The model-binders tag has no wiki summary.
0
votes
2answers
328 views
Add class to elements for values of attribute with Backbone.ModelBinder
I'm using Backbone.ModelBinder in a Backbone.js Marionette project. I've a scenario which I can't work out how to use ModelBinder to automatically update my model/UI.
My model has a 'status' string ...
1
vote
2answers
98 views
how can I bind a complex class to a view, while preserving my custom validation attributes?
In my project I have a model class that uses another class, like in the sample below.
One of the properties in the model depends for validation on on of the properties of a child object -- in this ...
52
votes
7answers
5k views
ASP.NET MVC: Best way to trim strings after data entry. Should I create a custom model binder?
I'm using ASP.NET MVC and I'd like all user entered string fields to be trimmed before they're inserted into the database. And since I have many data entry forms, I'm looking for an elegant way to ...
2
votes
1answer
416 views
Doing custom binding for a specific data-type in a ModelBinder
I'm in the process of creating my own custom ModelBinder that inherits from DefaultModelBinder, and manually binds XElement-typed properties.
Now it seems that I have to override the 'BindProperty' ...
3
votes
2answers
1k views
MVCContrib grid and posting back with model binder
The contents of my MVCContrib grid come from the Model on a strongly typed View. When a post is made, the contents of the grid are not in the model object when it returns to the controller. I can see ...
1
vote
1answer
386 views
Model binder in MVC question
I am getting the following Error
The model item passed into the dictionary is of type 'MvcWebApplication.Models.Product' but this dictionary requires a model item of type ...
41
votes
6answers
23k views
MVC DateTime binding with incorrect date format
Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of
public ActionResult DoSomething(DateTime startDate)
{
...
}
This successfully converts a ...
6
votes
3answers
6k views
ASP.NET MVC - Multiple models in a form and model binders
I have a form which needs to populate 2 models. Normally I use a ModelBinderAttribute on the forms post action i.e.
[Authorize]
[AcceptVerbs("POST")]
public ActionResult ...
2
votes
2answers
2k views
Asp.net MVC Module binding with validation for Complex Types
I'm building a questionnaire app in asp.net mvc, and I'm having trouble with the module binder for a list of complex types.
First: I can't get ...
15
votes
4answers
4k views
How to test custom Model Binders in ASP.NET MVC?
I've written some custom model binders (implementing IModelBinder) in our ASP.NET MVC application. I'm wondering what is a good approach to unittest them (binders)?