Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
9k views

ASP.NET MVC2 - Custom Model Binder Examples

I am trying to find some examples of building a custom model binder for a unique binding scenario I need to handle, but all of the articles I found were for older versions of MVC which are no longer ...
5
votes
4answers
159 views

A created a new CustomModelBinder from one that already worked. Why does the new one never get called to do any binding?

Can I do something like this? [HttpPost] public ActionResult Index(WizardViewModel wizard, IStepViewModel step) { Where I have the following in my global.asax.cs application_start ...
4
votes
2answers
96 views

Custom Model Binder Not Validating Model

I started to play around with knockout.js and in doing so I used the FromJsonAttribute (created by Steve Sanderson). I ran into an issue with the custom attribute not performing model validation. I ...
4
votes
2answers
332 views

Custom model binder not called when type is nullable

I have a custom struct called TimeOfDay which is used in a view model like this: public class MyViewModel { public TimeOfDay TimeOfDay { get; set; } } I have created a custom model binder called ...
4
votes
3answers
4k views

Custom DateTime model binder in Asp.net MVC

I would like to write my own model binder for DateTime type. First of all I'd like to write a new attribute that I can attach to my model property like: [DateTimeFormat("d.M.yyyy")] public DateTime ...
3
votes
2answers
99 views

NInject: Inject a dependency into a custom model binder and using InRequestScope

I'm using NInject with NInject.Web.Mvc. To start with, I've created a simple test project in which I want an instance of IPostRepository to be shared between a controller and a custom model binder ...
3
votes
3answers
134 views

Dependency Inject for models

I'm sure someone has asked this before, but I'm struggling to find where. I'm using Ninject to remove dependencies from my controllers, along with a repository design pattern. As I understand it, ...
3
votes
1answer
135 views

NullReferenceException when using custom model binder

I am trying to make a binder for an abstract class. The binder decides which implementation of the class to use. public abstract class Pet { public string name { get; set; } public string ...
3
votes
2answers
577 views

ASP.NET MVC Model Binder with Global Number Formats

The default model binder is returning errors for properties that are of type double when my application is being used in countries that use different number formatting for decimals (e.g. 1.2 = 1,2). ...
3
votes
1answer
616 views

Can I register a custom model binder somewhere other than Global.asax?

It would be handy to limit the scope of a custom model binder for just a specific controller action method or its entire controller. Hanselman wrote a sentence that implied alternative locations for ...
3
votes
1answer
570 views

ASP.NET MVC2 - Resolve Parameter Attribute in Model Binder

Given an action like: public ActionResult DoStuff([CustomAttribute("foo")]string value) { // ... } Is there any way to resolve the instance of value's CustomAttribute within a ModelBinder? I was ...
2
votes
3answers
997 views

ASP.Net MVC ModelBindingContext class— how are its model values populated?

I'm scratching my head a bit at how model binders do their work in ASP.Net MVC. To be specific, the BindModel() method has a ModelBindingContext parameter that holds the model name and type, but I ...
2
votes
1answer
756 views

Saving Dropdown list selection with Entity Framework in ASP.NET MVC solution

I'm looking for advice on a decent pattern for dropdown list selection and persistence of the selection with POCO EF please. I have a list of IEnumerable<Country> in my view model where Country ...
1
vote
1answer
36 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 ...
1
vote
1answer
38 views

“An entity object cannot be referenced by multiple instances of IEntityChangeTracker” with a custom model binder

I've been following Darin's answer to a question I had on slimming down my controllers and I'm running into problems with this IEntityChangeTracker exception: An entity object cannot be referenced ...
1
vote
1answer
84 views

Bind Exclude not working Model Binding for child objects in ASP.Net MVC

I got into a issue in Model Binding in Asp.Net MVC. I have view model like below, public class ArticleViewModel : BaseViewModel { public Article art { get; set; } public ...
1
vote
1answer
188 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
1answer
174 views

Problem with double values binding

In my project I want to allow users input double values in 2 formats: with using ',' or '.' as delimiter (I'm not interested in exponential form). By default value with delimiter '.' don't work. I ...
1
vote
1answer
110 views

How to make a custom string object modelbind in MVC?

I created a custom string object, but it does not modelbind when I post it back to the server. Is there an attribute I'm missing on the class or something? This is the custom string class below: ...
1
vote
1answer
115 views

Binding error in custom model minder removes the value the user inputted

I'm using ASP.NET MVC 3 RTM, and I have a view model like this: public class TaskModel { // Lot's of normal properties like int, string, datetime etc. public TimeOfDay TimeOfDay { get; set; } } ...
1
vote
1answer
304 views

Custom Model Binder for DropDownList not Selecting Correct Value

i've created my own custom model binder to handle a Section DropDownList defined in my view as: Html.DropDownListFor(m => m.Category.Section, new SelectList(Model.Sections, "SectionID", ...
1
vote
2answers
314 views

ASP.NET MVC - Custom Model Binder for ID fields

i have the following entities: public class Category { public virtual int CategoryID { get; set; } [Required(ErrorMessage = "Section is required")] public virtual Section Section { get; ...
1
vote
1answer
55 views

Getting the Action during model binding

Is there a way of getting the Action, and reading any attributes, during the model binding phase? The scenario is this: I've got a default model binder set-up for a certain data-type, but depending ...
1
vote
2answers
317 views

How do I invoke UpdateModel from within a Custom ModelBinder? (MVC)

I'm creating a few custom binders for complex types in my Model. My model is composed of objects that have their own separate binders. I want the base object to do its dirty work and then populate ...
1
vote
1answer
423 views

DataAnnotations validation and custom model binder

I have an action method that accepts the following model - LanguagesViewModel: public class LanguagesViewModel : ViewModelBase { IEnumerable<LanguageItem> Languages { get; set; } } public ...
1
vote
1answer
206 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 ...
1
vote
2answers
1k views

ASP.NET MVC - Custom model binder able to process arrays

I need to implement a functionality to allow users to enter price in any form, i.e. to allow 10 USD, 10$, $10,... as input. I would like to solve this by implementing a custom model binder for Price ...
0
votes
1answer
36 views

How can I control the attempted value for a custom model binder?

I've got an action with a signature like this: public ActionResult Index([ModelBinder(typeof(MyEnumModelBinder))] MyEnum myEnum) Which is implemented like this: public class MyEnumModelBinder: ...
0
votes
1answer
38 views

One custom model binder to CreateModel and another to BindModel?

Background: In my MVC post back action methods I am receiving command objects rather than view models. The idea is that these command objects (which roughly equate to transaction scripts) will be set ...
0
votes
1answer
22 views

How do I re-validate my model in a custom model binder inheriting from DefaultModelBinder after modifying it?

I have a custom model binder inheriting from DefaultModelBinder. What I want it to do is to set a property on the model, that can't be resolved by the DefaultModelBinder. It looks like this: public ...
0
votes
1answer
23 views

Custom ModelBinder for DateTime Localization

I have a form on an ASP.NET MVC site which I've recently changed from POST to GET. However when I've done this I've realised that the DateTime parameters in the related action are now effectively ...
0
votes
1answer
89 views

Custom model binder for inner model

I got a model like this: public class MainModel { public string Id {get;set;} public string Title {get;set;} public TimePicker TimePickerField {get;set;} } TimePicker is inner model which ...
0
votes
1answer
91 views

How can I build a custom model binder which will return different types of models depending on the request context?

I have incoming requests (from Facebook for Credits handling) on a specific action which will have have different contents, so I have different model classes to handle that. This is my action: ...
0
votes
0answers
32 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(); } }
0
votes
1answer
55 views

How do i create a custom model binder in ASP.NET Web Forms?

I'm using ASP.NET Web Forms and can't migrate to ASP.NET MVC right now. I love the way the MVC team implemented a custom IHttpHandler, or HttpModule (Not sure which one) that gets the JSON data passed ...
0
votes
1answer
61 views

Testing If a class is being activated using WebActivator and if add a IModelBinder to ModelBinderProviders.BinderProviders.

Dear fellows from Stack Exchange. I'm trying to test if my Custom Model Binder is being added to the ModelBinderProviders.BinderProviders collection. I decided to activate this through WebActivator, ...
0
votes
1answer
343 views

Issue with Html.EditorFor on MVC3

I have a view with a form that's is typed to a viewmodel called AddEditItemVM. This viewmodel has the following property: public List<Category> Categories{get;set;} What im trying is two ...
0
votes
0answers
70 views

custom mvc modelbinder woes

modelbinder goodness Original post & suggestion i have followed this example and have a "customTimeSpanModelBinder" i then added it in my global.asax application_start like so ...
0
votes
0answers
154 views

Multiple custom ModelBinders ModelState.IsValid inside action method

public ActionResult Add([GigBinderAttribute]Gig gig, [FileModelBinderAttribute]File file) I have a couple of Custom model binders like the two above. My question is inside this Add action method. ...
0
votes
1answer
154 views

custom modelbinder

I want to create a custom modelbinder which validates the bounded model. I have found several examples of this and it works as it should. But I want to also to be able to send the user back to the ...
0
votes
2answers
312 views

ASP.NET MVC routing issue with Google Chrome client

My Silverlight 4 app is hosted in ASP.NET MVC 2 web application. It works fine when I browse with Internet Explorer 8. However Google Chrome (version 5) cannot find ASP.NET controllers. Specifically, ...