The modelbinders tag has no wiki summary.
1
vote
1answer
315 views
ASP.NET MVC - Preserving invalid DateTime selection with 3 dropdown lists
I'm still fairly new to ASP.NET and MVC and despite days of googling and experimenting, I'm drawing a blank on the best way to solve this problem.
I wrote a BirthdayAttribute that I want to work ...
0
votes
0answers
32 views
How to render a base view and a concrete view in MVC4?
In my project, I'm dealing with base and concrete classes.
The next view I consider it as a base view called _Question (this is a partial view). In it, I've got an Id and the model type (just for a ...
2
votes
2answers
478 views
ASP.NET MVC 4 Navigation Virtual Property not populated on Post Action
I have a navigation property (Category) on a Question class for which I am manually creating a DropDownList for in the Create view of Question, and when posting the Create action, the Category ...
1
vote
1answer
234 views
Accept comma and dot as decimal separator
Model binding in ASP.NET MVC is great, but it follows locale settings. In my locale decimal separator is comma (','), but users use dot ('.') too, because they are lazy to switch layouts. I want this ...
1
vote
1answer
306 views
ModelBindingContext.ValueProvider.GetValue(bindingContext.ModelName) returns null
I have bindingContext.ValueProvider.GetValue(bindingContext.ModelName) for ModelBinding and it returns null, but if I use bindingContext.ValueProvider.GetValue("id") is returns the correct record. Any ...
0
votes
1answer
84 views
The difference between IModelBinder and IModelBinderProvider asp.net mvc 3
The question is simple: when should I implement IModelBinder and when IModelBinderProvider?
Thanks in advance!
7
votes
1answer
98 views
DefaultModelBinder and collection of inherited objects
I have an action method like this below.
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(Form newForm)
{
...
}
I have a model with the following classes, which I'd like to load the ...
2
votes
1answer
76 views
Passing data from form without Html helpers
Can I pass data to controller Without using Html.EditorFor etc?
Just by using simple HTML inputs like:
View:
@using (Html.BeginForm("Add", "Parameter", FormMethod.Post, new { enctype = ...
0
votes
1answer
86 views
Binding Custom exception from BAL to ModelState of controller in MVC
MY Business service return custom rules exception with dictionary of key/value when some validation error occurred.
For such validation errors i want to handle in my MVC project and bind with ...
0
votes
2answers
121 views
Model Binding is not working for expression x=>x.InputModel.PropertyName
Controller:
public class HomeController : Controller
{
public ActionResult Index()
{
var myViewModel = new CreateFavoriteListViewModel();
var favoriteTypeDropdownList = new ...
0
votes
0answers
100 views
Why use “ModelBindingContext” over “ControllerContext” in a custom model binder?
Trying to phrase this as a question because in a problem I'm currently working on I'm unsure what benefits using the ModelBindingContext gives me over the ControllerContext. Every example seems to ...
4
votes
1answer
3k views
ASP.Net Web Api not binding model on POST
I'm trying to POST JSON data to a Web Api method but the JSON data is not binding to the model.
Here's my model:
[DataContract]
public class RegisterDataModel
{
[DataMember(IsRequired = true)]
...
0
votes
1answer
141 views
Custom ModelBinder Lifecycle and Dependency Injection [duplicate]
Possible Duplicate:
Inject a dependency into a custom model binder and using InRequestScope using Ninject
I'm trying to bind an NHibernate session to a custom model binder:
Since a custom ...
1
vote
0answers
161 views
Asp.Net Mvc 4 Validation Mechanism
What is the best mechanism for validation in Asp.Net Mvc 4,
I mean validating at property level (Required, Length, etc) and Business Level (validating against business rules),
Is it a bad idea to ...
0
votes
1answer
171 views
Asp.net MVC 3 JSON Model Binders
So I have this JSON
mrn:"0760433"
res:[{"registry":1,"episodeType":{"id":6,"dateAndTime":"08-06-2012 13:21"}}]
And I have these view models
public class patient
{
public string mrn ...
3
votes
3answers
246 views
How do I make the ModelBinder return null for a parameter?
I've got a POCO that I'm using as an argument to an action in MVC3. Something like this:
My Type
public class SearchData
{
public string Property1 { get; set; }
public string Property2 { ...
0
votes
0answers
93 views
IModelBinder with DataAnnotation Support
We have to use a custom ModelBinder that implements IModelBinder. We cannot directly change this code at all. It currently doesn't have support for updating ModelState from the DataAnnotations of the ...
1
vote
2answers
176 views
Unit test failing because of sessions
I have written Custom model binder for my MVC3 application. I desided to use the Custom model binder is because I am using Sessions and unit tests are failing because of them.
Now my problem is that ...
0
votes
1answer
293 views
Issue With Custom Collection Model Binder in MVC 3
I'm having an issue creating a model binder in MVC.
The action that I'm targeting looks like:
public ActionResult GetAccounts (ICollection<Account> accounts ){}
I created a custom model ...
1
vote
1answer
835 views
How can I bind a simple Javascript array to an MVC3 controller action method?
Here is the javascript code I use to create the array and send it on it's way:
<script type="text/javascript" language="javascript">
$(document).ready(function () {
...
0
votes
2answers
332 views
Affecting MVC ModelBinders with Attributes
In MVC3 (.Net) it is possible to set a Bind Attribute on a parameter Type in the method signature for a Controller method:
[HttpPost]
public ActionResult Edit([Bind(Exclude = "Name")]User user)
{
...
4
votes
1answer
971 views
OnActionExecuting add to model before getting to action
I have the following:
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
base.OnActionExecuting(filterContext);
if (filterContext == null)
{
...
1
vote
1answer
488 views
ASP.NET MVC3 - Dynamic forms (ModelBind to a Dictionary<string, string> or NameValueCollection) - How?
Lets say I have a a form that can have new text inputs created in JavaScript at runtime. And I want to bind the values to a NameValueCollection (or a Dictionary). Does ASP.NET MVC3 natively allow ...
1
vote
1answer
479 views
How to bind a <input type = “text” .. with my property in ViewMode
How to bind to an input[type='text'] field with a property of type Subsidiary
When user register a party, one of the fields is the subsidiary that was the party
Instead of putting a DropDown, Select ...
9
votes
2answers
2k views
MVC3 Non-Sequential Indices and DefaultModelBinder
Is it true that the default model binder in MVC 3.0 is capable of handling non-sequential indices (for both simple and complex model types)? I've come across posts that suggest it should, however in ...
0
votes
1answer
657 views
asp.net mvc 3 model binder not binding
I have a logon page and it seem like the login info is not being bound to my model
@using (Html.BeginForm("LogOn", "Account"))
{
<div>
<fieldset>
...
0
votes
1answer
52 views
Are there any santizing ModelBinders?
I'm curious if anyone is using a ModelBinder that sanitizes input at binding time. This seems like it would be a useful feature, but I haven't seen much discussion on the topic. Does anyone have any ...
0
votes
0answers
67 views
Model bind tag collection
Is it possible to add a model binder for something like this?
public class Foo {
public TagCollection Tags { get; set; }
public Test() {
Tags = new TagCollection();
}
}
1
vote
1answer
139 views
mvc3 ignore null values when binding a list?
I have a custom model binder that either returns the complete object or a null. This custom model binder is operating on a list so in my controller I get a list of either a complete object or a null.
...
1
vote
2answers
80 views
Model binder woes
why do I always have so much trouble with the model binder?? I have the following controller:
namespace X.Web.Controllers
{
public class ExpertsVM
{
public string GivenName;
...
7
votes
3answers
1k views
Use custom ASP.NET MVC IValueProvider, without setting it globally?
I want to be able to grab keys/values from a cookie and use that to bind a model.
Rather than building a custom ModelBinder, I believe that the DefaultModelBinder works well out of the box, and the ...
0
votes
1answer
126 views
ASP.NET MVC 3: Can I pass a modelbound object to a FilterAttribute?
I have a controller method with a custom FilterAttribute on it...
[ActivityHistory]
public ActionResult Index(Vehicle vehicle, string componentName)
{
return PartialView("_Description");
}
The ...
1
vote
1answer
239 views
UpdateModel without validation
Is there a possibility in ASP.NET MVC3 to set the properties of a view model from a FormCollection without invoking validation specified by validation attributes on the properties?
...
3
votes
2answers
2k views
MVC3 ModelBinding to a collection posted back with index gaps
I have a collection of objects on my Model that I'm rendering in a View by using EditFor function, and I have an EditorTemplate which is responsible for actually rendering each object.
...
1
vote
1answer
310 views
MS MVC3 Model Binding an Object
Can someone help me better understand the DefaultModelBinder and how it handles binding a Model that has a property of type object?
I've downloaded the code and tried tracing through it, but am still ...
2
votes
1answer
498 views
What would cause this custom XML ModelBinder to not deserialize my XML POST?
The Model
public class SimpleUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
public int Role { get; set; }
...
6
votes
2answers
2k views
MVC3 Razor model binder and inherited collections
I hope I'm not missing something incredibly obvious here but is there any reason why model binder is always having trouble binding a view model that inherits from a collection?
Lets say I want to ...
1
vote
3answers
105 views
How do I validate a Modelbound item without violating DRY in ASP.NET MVC?
I'm using the ASP.NET MVC DefaultModelBinder to bind a request to a model class, but only using two of its properties:
namespace MVCApp.Models
{
public class Ticker
{
public string ...
0
votes
1answer
52 views
Effective Shopdesign (with ModelBinders?)
I´m planing a shopsystem. I want to sell different lamps. For that reason I have created a basemodelclass with properties which every lamp has and inherit from that class to special lampmodels. Now I ...
0
votes
3answers
394 views
ASP.NET MVC reusing Action with different Prefix?
I have this Action:
public ActionResult AddCategory(Category newCategory)
{
...//newCategory.Name is filled up
return new Json(true);
}
And a view that post at this Action:
...
2
votes
2answers
1k views
.Net MVC3 Custom Model Binder - Initially Loading Model
I am creating a custom model binder to initially load a model from the database before updating the model with incoming values. (Inheriting from DefaultModelBinder)
Which method do I need to override ...
1
vote
1answer
894 views
ASP.NET MVC model binder parse decimal differently with GET and POST requests
The server is hosting Asp.net mvc3 app and the Browser culture is set to da (Danish)
GET request url: /get?d=1.1 (note that the decimal separator is .)
return: da;1,1 (note that the decimal ...
0
votes
1answer
2k views
ASP.NET MVC Session
I've been reading PRO ASP.NET MVC2 by Steven Sanderson and I still can't figure out something about session.
In the book he tells how to develop a Cart based on session using a Custom model binder for ...
5
votes
2answers
2k views
Route Parameter, Custom Model Binder or Action Filter?
Our ASP.NET MVC application allows an authenticated user to administer one or more "sites" linked to their account.
Our Urls are highly guessible since we use the site friendly name in the URL rather ...
1
vote
1answer
130 views
Do I need a custom modelbinder for my Create Action?
I have been doing a bit of research on this but, I am having a little trouble understanding when modelbinding is needed in MVC 3. I have created a ViewModel to supply data to my Create view.
public ...
0
votes
2answers
312 views
Default ModelBinder not working properly
I have this following structure:
public class Dummy
{
public string Name { get; set; }
public InnerDummy Dum { get; set; }
}
public class InnerDummy
{
public string Name { get; set; }
}
...
0
votes
2answers
786 views
Asp MVC 3: Modifiy Values Sent to View
as far as I understand a ModelBinder can generate class instances out of routedata/formdata.
What I'm looking for is a way to manipulate the data handed over to the view before it is consumed by the ...
3
votes
1answer
222 views
How do I achieve ModelBinding with Html.RenderAction?
I'm working through a MVC book which uses the older version of Html.RenderAction. So it looks like this in the book Html.RenderAction("Summary", "Cart"); I have had to convert to ...
3
votes
1answer
4k views
Custom model binding, model state, and data annotations
I have a few questions regarding custom model binding, model state, and data annotations.
1) Is it redundant to do validation in the custom model binder if I have data annotations on my model, ...
4
votes
2answers
561 views
How can I provide my own ICustomTypeDescriptor in ASP.NET MVC?
I'm working on a small library for for ASP.NET MVC 3 that should offer better reusability of model metadata and easy mapping from data entities from / to custom viewmodels. For this I need to be able ...

