Tagged Questions
The defaultmodelbinder tag has no wiki summary.
11
votes
4answers
4k views
ASP.NET MVC posted file model binding when parameter is Model
Is there any way to get posted files (<input type="file" />) to take part in model binding in ASP.NET MVC without manually looking at the request context in a custom model binder, and without ...
9
votes
3answers
549 views
Default Model Binder does not bind for Nullable types in IEnumerable
I have a controller action whose definition looks like-
public ActionResult ChangeModel( IEnumerable<MyModel> info, long? destinationId)
And the model:
public class MyModel
{
public ...
7
votes
3answers
2k views
ASP.NET MVC DefaultModelBinder with nested lists
I have a View with a table representing an employee's timesheet. Days across the top, projects down the side, with each day/project intersection containing two values for regular hours and overtime.
...
7
votes
5answers
3k views
Decimal values with thousand separator in Asp.Net MVC
I have a custom modal class which contains a decimal member and a view to accept entry for this class. Everything worked well till I added javascripts to format the number inside input control. The ...
6
votes
4answers
570 views
Model Binder in ASP.NET webforms
For number of years I did ASP.NET web forms development I was spoiled by a proprietary library, which allowed me to do things like:
UpdateToObject(ControlsCollection, obj)
...
6
votes
1answer
350 views
DefaultModelBinder Problem with nested levels + other binders
I have what I would think is a somewhat normal situation where I need to bind form posts to an "order" model. This model has a few levels of information to it:
Order.Billing.FirstName
...
6
votes
2answers
1k views
ASP.NET MVC UpdateModel with interface
I am trying to get UpdateModel to populate a model that is set as only an interface at compile-time. For example, I have:
// View Model
public class AccountViewModel {
public string Email { get; ...
6
votes
5answers
2k views
ASP.NET MVC Beta 1: DefaultModelBinder wrongly persists parameter and validation state between unrelated requests
When I use the default model binding to bind form parameters to a complex object which is a parameter to an action, the framework remembers the values passed to the first request, meaning that any ...
5
votes
3answers
400 views
MVC 3 DefaultModelBinder cannot deserialize .NET Dictionary object passed to an action as a JSON object?
I have a very simple class:
public class FilterItem
{
public Dictionary<string, string> ItemsDictionary { get; set; }
public FilterItem()
{
ItemsDictionary = new ...
5
votes
1answer
802 views
Testing Model binding in ASP.NET MVC 2
First; I know that I should not need to test the internals of MVC but I REALLY need a suite a tests around data flowing into our system.
How can I, I hope without mocking all of HTTP context, test ...
3
votes
2answers
36 views
Is there a reason why the default modelbinder doesn't bind to fields?
I'm using ASP.NET MVC3 and i'm wondering that the default modelbinder binds to public properties but not to public fields.
Normally i just define the model classes with properties but sometimes i use ...
3
votes
2answers
280 views
Do MVC3 non-sequential hidden input indexes need to come first?
MVC3 non-sequential index hidden inputs for model binding..
<input type="hidden" name="Index" value="whatever" />
Does it matter if they go before, after, in the middle of the other related ...
3
votes
2answers
360 views
ASP.NET MVC default binder: too long ints, empty validation error message
I've got the following model class (stripped for simplicity):
public class Info
{
public int IntData { get; set; }
}
Here's my Razor form that uses this model:
@model Info
...
3
votes
1answer
741 views
MVC 3 with Forms and Lists: default model binder and EditorFor
The Model:
public class MyObject
{
public IList<Entry> Entries;
}
public class Entry
{
public string Name { get; set; }
}
If I use the default EditorFor(model => model.Entries) the ...
3
votes
1answer
324 views
asp.net mvc default model binder for model that has inheritance
I have a form that I binding to that has the following structure:
public class Status
{
public List<ABCAttachment> ABCAttachments_Files { get; set; }
}
public class Attachment
{
public ...
3
votes
1answer
407 views
Need help using the DefaultModelBinder for a nested model
There are a few related questions, but I can't find an answer that works.
Assuming I have the following models:
public class EditorViewModel
{
public Account Account {get;set;}
public string ...
3
votes
1answer
933 views
MVC2 Modelbinder for List of derived objects
I want a list of different (derived) object types working with the Default Modelbinder in Asp.net MVC 2.
I have the following ViewModel:
public class ItemFormModel
{
...
2
votes
1answer
332 views
How do I use (Try)UpdateModel?
What is the right way to use (Try)UpdateModel?
When I run this:
TryUpdateModel returns true,
ViewData has no errors,
but my Proxy is not updated.
Action Method
public void Save(string ...
2
votes
2answers
491 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 ...
2
votes
1answer
250 views
Default model binder does not bind my model class
I am trying to make a post that should use the Default Model Binder functionality in ASP.NET MVC 2 but unfortunately I can't get through....
When I click on the checkout button I populate a form ...
2
votes
1answer
259 views
will asp.net mvc model binder keep a posted array in the proper order?
so i've got an array of numbers that i'm posting to an asp.net mvc action that has a list(of integer) parameter and it all works great.
my question is this:
Is it safe to assume that the list(of ...
2
votes
3answers
928 views
Asp.Net MVC 2 DefaultModelBinder error using abstract classes
I have a simple Poco-Model using abstract classes, and it seems not to work with the Default ModelBinder of Asp.net MVC 2.
One Item has several Objects in a collection, all using the same abstract ...
2
votes
4answers
665 views
ASP.NET MVC: avoid tight coupling when binding form POST to parameter
Let's say I have an interface like:
interface IThing {
int Id { get; set; }
string Title { get; set; }
}
And in ASP.NET MVC I have a form that posts to a controller action like this:
...
1
vote
1answer
42 views
bind attribute include and exclude property with complex type nested objects
Ok, this is weird. I cannot use BindAttribute's Include and Exculude properties with complex type nested objects on ASP.NET MVC.
Here is what I did:
This is my model:
public class FooViewModel {
...
1
vote
2answers
69 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 ...
1
vote
1answer
143 views
How do I get MVC Model Binder to only bind non Null values for a list?
Following this question I was wondering if there is anyway to make MVC model binder only bind elements to a list if there is a value to populate them. For example if have a form with three inputs with ...
1
vote
2answers
313 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
215 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 ...
1
vote
1answer
529 views
What should a BindModel() implementation do?
I've been reading the MVC 3 source code trying to understand what semantics I should adhere to if I override DefaultModelBinder.BindModel() or even implement IModelBinder.BindModel().
It's unclear to ...
1
vote
1answer
451 views
ASP.NET MVC auto-binds a refreshed model when ModelState is invalid on HttpPost
I'm working on an ASP.NET MVC2 app. I've come to realize a very surprising, yet amazing thing that MVC does behind the scenes having to do with the ModelState and model binding. I have a ViewModel ...
1
vote
1answer
649 views
MVC Default Model Binder - Bind a Multiselect Dropdown to an IList<T>
I'm using MVC 2.0 in an ASP.NET application using NHibernate.
I have a working View, Controller and data access layer using NHibernate that is able to display and save an entity with a relationship ...
1
vote
2answers
194 views
Model Binding, a simple, simple question
I have a struct which works much like the System.Nullable type:
public struct SpecialProperty<T>
{
public static implicit operator T(SpecialProperty<T> value)
{
return ...
0
votes
1answer
31 views
DefaultModelBinder not binding model (always null) even though ModelState contains all required values
I am working with the sample ASP.NET MVC 3 application. I am working on a proof of concept for an API for a project I'm working on, by sending log in requests using HttpWebRequests. I am submitting ...
0
votes
1answer
23 views
Manipulate model value before passing it to DefaultModelBinder.BindModel
Some decimal and decimal? properties in my view model are marked as "Percent" data type, along with other data annotations, for example:
[DataType("Percent")]
[Display(Name = "Percent of foo ...
0
votes
1answer
88 views
MVC3 Form submit single input to Action with list parameter
I have a third party control that utilizes a single hidden input field to store a list of integers. This control is used throughout the site on numerous forms.
The submitted value (as displayed in ...
0
votes
2answers
89 views
How to send a list of int with jQuery to ASP.net MVC Default Model Binder
When I send a list of int's with jQuery like this:
$.ajax('@Url.Action("Execute")', {
type: 'POST',
data: {
pkList: [1,2,3]
}
});
Then jQuery will transform the pkList object ...
0
votes
0answers
53 views
Using DynamicObject to bind model in MVC Controller Action
I would like to be able to use the DefaultModelBinder in MVC to bind to a model that is from type DynamicObject.
I create a form using a dynamic structure
I submit the form to the Controller Action
...
0
votes
1answer
70 views
DefaultModelBinder Implementation does not populate the model - ASP.NET MVC 2
I have a very simple implementation of the DefaultModelBinder, I need it to fire some custom validation.
public class MyViewModelBinder : DefaultModelBinder
{
public override object ...
0
votes
2answers
69 views
How to bind a model property with DefaultModelBinder - ASP.NET MVC2
I have the following scenario.
I have the Edit/Employee view populated with a model from an Entity Framework entity (Employee)
I post from Edit/Employee to the Save/Employee controller action. The ...
0
votes
1answer
200 views
JSON custom binder null for derived abstract class asp.net mvc
I have made a custom binder for an abstract class. The binder decides which implementation to use.
It works well, but when I add a property which does not exist in the abstract class to a child class, ...
0
votes
1answer
2k views
Model Binder & Hidden fields
I have a simplified test scenario useful for asking this question: A Product can have many Components, a Component can belong to many Products. EF generated the classes, I've slimmed them as follows:
...
0
votes
1answer
24 views
Problem with defaul binder (probably simple)
I am building a ASP.NET MVC 2 application and have a controller that contains the following actions :
public ActionResult Edit()
{
...
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ...
0
votes
1answer
87 views
default model binder
Basically i have a form with around 100 elements. The values bind to my model when i submit the form. But i want to work on certain values of the form elements before the values are set. Basically i ...
0
votes
1answer
2k views
ASP.Net MVC3 Parent Child Model Binding
I have a partial template that uses a User object as a model. The user has a collection of Accounts. On this partial template I have a loop as follows. The _Account partial template is bound to the ...
0
votes
1answer
538 views
dynamic model and ModelState
I have an Action like this:
Update([Bind(Prefix = "CurrentModel")] dynamic edited)
but when I use dynamic the ModelState.IsValid always returns true so it seems like there is no validation on the ...
0
votes
4answers
359 views
ASP.NET MVC ModelBinder bug: Binding request variable “id” to Model's property “Id”
I am using MVC 3 final RTM.
Given
This route:
context.MapRoute(
"Blog_Posts",
"Blog/Posts/{id}/{slug}",
new { controller = "Posts", action = "Index", slug = UrlParameter.Optional }
);
...
0
votes
1answer
284 views
using MVC Model Binder, how to prevent binding inner complex object properties?
i have the following model
public class Person
{
public int Id {get;set;}
[Required()]
public string Name {get;set;}
[Required()]
public Address Address {get;set;}
}
public class ...
0
votes
1answer
313 views
ASP.NET model binding to base type
I have a BaseViewModel that my View Models all inherit from.
public class MagazineViewModel : BaseOutputViewMode
{
public string TitleOfPublication { get; set; }
}
In my controller I use a ...
0
votes
4answers
682 views
Formatting nullable DateTime fields in strong typed View
I have a Person class with a BornDate property in my model defined as
[DisplayName("Born Date")]
public DateTime? BornDate { get; set; }
I use this field in my view as
<td ...
0
votes
1answer
489 views
Input file autobind to byte[] aray in ASP.NET MVC
Anyone managed to get default binder to work with input file control and property of type byte array?
If I have a property on my ViewModel named Image and a file input control on my view name Image, ...