Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

ASP.Net MVC 3 - JSON Model binding to array

I am on ASP.Net MVC 3, and going by the feature list supported in at, i should be able to get default json model binding working out of the box. However i havent been successful in binding an ...
4
votes
2answers
461 views

ASP.NET MVC2 and JSON model binding with validation to an action method

Phil Haack's blog entry describes this process using ASP.NET MVC 2's futures and Crockford's json2.js. John Resig also recommends using Crockford's json2.js in this article regarding "use strict";. ...
4
votes
1answer
453 views

How to handle nested models in ASP.NET MVC

I have been looking around for a nice working solution on how to correctly handle model binding with nested attributes. I have one model that has a list of other child models like below: public class ...
3
votes
1answer
424 views

Finding custom attributes on view model properties when model binding

I've found a lot of information on implementing a custom model binder for validation purposes but I haven't seen much about what I'm attempting to do. I want to be able to manipulate the values ...
3
votes
3answers
4k views

ASP.NET MVC 2: CheckBoxList multiple selections: how to model bind back and get all selections?

This code: Html.CheckBoxList(ViewData.TemplateInfo.HtmlFieldPrefix, myList) Produces this mark-up: <ul><li><input name="Header.h_dist_cd" type="checkbox" value="BD" /> ...
3
votes
2answers
704 views

CultureInfo issue with Modelbinding double in asp.net-mvc(2)

In my Jquery script I post two doubles using the browser's CultureInfo (en-UK) that uses the .as a fraction separator. My MVC app is running on a server with locale nl-BE using the , as a fraction ...
2
votes
4answers
283 views

How to ignore model binding from querystring in MVC

I have form submission doing a post back. The controller action accepts the values as parameters. For ex: EditProduct(int productid, string productname). productid is supplied from the form in a ...
2
votes
1answer
1k views

Possible to change Data Annotations during Runtime? (ASP.NET MVC's [Range] [Required] [StringLength] etc.)

Normally, ModelBinding Validation of a class member might be done like this example: public Class someclass { [StringLength(50)] public string SomeValue { get; set; } } SomeValue is limited ...
2
votes
2answers
599 views

How ASP.NET MVC applies .input-validation-error to a textbox when the form is redisplayed for failed value?

I've asked a question to know why, in my application, textboxes are being highlighted (i.e. red border and pink-shaded backgroung are applied to the textbox) when I use modelbinding to validate the ...
2
votes
1answer
532 views

ASP.NET Collection Model Binding Nested Form Problem

I have a partial view that is bound to an object Cart. Cart has a collection of CartLines. My view is below: <tbody> <% foreach (var line in Model.Lines) { %> ...
2
votes
1answer
2k views

ASP.NET MVC Updating a list of objects on one form? (model binding to a list)

Quick question regarding updating a list of items in asp.net mvc. Basically I have an edit action method that returns a collection of objects (incidentally, the table structure of which looks as ...
1
vote
0answers
37 views

Forcing UpdateModel behavior from the ASP.NET MVC 3 Default Model Binder for Action Method Parameters

I am implementing an error handling strategy in an ASP.Net MVC 3 application. I've written an attribute implementing IExceptionFilter etc. This functions correctly, handling exceptions throw in the ...
1
vote
1answer
100 views

MVC/Razor model binding collections when an element is missing

I've got a form that contains a variable length list of textboxes, rendered using a template similar to this.. @Html.TextBox("items[" + itemIndex + "].Title", someValue) So the final rendered HTML ...
1
vote
1answer
385 views

ModelBinding enum values for selectlist and selected item

Ok, this was supposed to be a question asking for help getting my form to work properly. In the process of creating an example to post, I figured out what the fix is. So now it's a become a question ...
1
vote
1answer
241 views

PropertyDescriptor.SetValue not working in ModelBinder

I'm implementing a custom ModelBinder where I'm trying to set a property with PropertyDescriptor.SetValue and I can't figure out why it isn't working. For some complex properties the value isn't ...
1
vote
1answer
370 views

How can I ignore HttpRequestValidationException and encoded HTML myself during model binding?

I'm trying to figure out how I can ignore a HttpRequestValidationException begin thrown during model binding. Here's the deal, I know how to handle HTML being posted and bound to a property that ...
1
vote
2answers
391 views

ASP.NET MVC model binding and default constructor

How do bind my domain object Car to View? MVC says "your class must have default constructor". But I don't want to change any business rules by creating a default constructor. The only solution I can ...
1
vote
1answer
567 views

How to dynamically bind data to label in asp.net mvc

How to dynamically bind data to label in Asp.net MVC. I have table where i need to display all compnay name dayanamically. I did create a Model for compnay name. code in model look like this, public ...
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
2answers
527 views

ASP.net MVC - Use Model Binder without query string values or fancy routes

I have an Asp.net MVC app that currently works well using the default model binder and urls with complex parameters like this: ...
1
vote
1answer
948 views

MVC3 RC2 JSON Post Binding not working correctly

I've seen other posts on this subject and have fiddled with variations but still cannot not get the JSON model binding to work correctly. I have the following in my global.asax.cs Application_Start ...
1
vote
1answer
77 views

How do I empty out a collection if I'm using TryUpdateModel?

I have a model that contains a List<PhoneNumber> property. I use TryUpdateModel in my update actions. Adding new numbers and changing existing numbers works fine. Removing existing numbers, ...
1
vote
1answer
51 views

Why does the DefaultModelBinder not bind to Char properties with value of “ ”c

I have a class like Public Class Task Property DuplexType As Char Property Name As String End Class In my controller I have an action that looks like <HttpPost()> Function ...
1
vote
1answer
300 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
299 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
106 views

How can I Model Bind to a property that exists in my ViewModel?

My ViewModel class has a property that contains a ShareClass object. ShareClass has a property called Id. I'm currently passing the ShareClass id into the action method as follows: public ...
1
vote
1answer
539 views

Why are my checkboxes not binding to my View Model?

I have a view model for a business. This model conatains a view model for address, contact details and also an IEnumerable. I use editor templates to display the checkboxes. The problem is when I'm ...
1
vote
1answer
2k views

Binding HttpPostedFileBase using Ajax.BeginForm

I have a form which binds a model and a file upload using the default binder for HttpPostedFileBase. This works fine when using Html.BeginForm(). However, I wanted to perform the same action using ...
1
vote
1answer
833 views

ViewModel approach interferes with ModelBinding in MVC 2 when using the new “For” HTML helpers

I am using .net MVC 2.0 and have set up an edit view that receives a custom ViewModel object. The ViewModel is a class with two properties: // Properties public Portfolio Portfolio { get; private ...
0
votes
0answers
13 views

Custom model binder and object context

Using MVC 3 and Entity Framework code first here and looking for a solution to the following problem: I have a custom model binder that binds DB objects on post-back: public object ...
0
votes
1answer
98 views

ASP.NET Mvc 3 Model binding to a collection not working

I am trying to create an edit form for a collection of items. The List is null and when I check the ModelState its Valid property is "true" and it has 0 keys. There are no required properties on the ...
0
votes
1answer
176 views

Model Binding RadioButtonFor() default Select MVC3.0?

Hi I have a ModelBinded View foreach (var Model in Model) { @Html.RadioButtonFor(modelItem => Model.DefaultLocation, Model.AddressID, new { @Checked = Model.DefaultLocation, id = ...
0
votes
2answers
170 views

MVC3 Model Binding in the way of my Child Action Method

I am using MVC3 and am trying to leverage the Child Action feature @Html.Action() so I have a View with the following @foreach (var item in Model.Items){ ...
0
votes
0answers
234 views

Ignore querystring value when posting form values to Action method

I have a "search" form with fields and a submit button. The returned results are displayed along with a pager control which renders anchor elements. So for example my form would have fields company ...
0
votes
0answers
466 views

mvc3 model binding

In MVC2 we found that the default model binder was not successfully binding some of our complex objects ( even though all Id's from the HTML were coming in correctly). Specifically we found that an ...
0
votes
1answer
488 views

MVC 3 with ajax not doing ModelBinding in Controller action

My MVC 3 controller action is not deserializing the JSON data from my AJAX post. Fiddler shows the data being passed correctly. I put a break point on the var x = "ok!"; line and it hits it every ...
0
votes
1answer
153 views

MVC2 Model Binding - Why do I always get back 01/01/0001 in my DateTime Field?

I have a ThingViewModel with a DateTime property: public class ThingViewModel { public DateTime ConfigDate{get;set;} } My view has a reference to a ViewUserControl that it imports and ...
0
votes
2answers
260 views

How ASP.NET MVC: How can I bind a property of type List<T>?

Let's say I've the bellow model public class UserInformation { public List<UserInRole> RolesForUser { get; set; } //Other properties omitted... } public class UserInRole { public ...
0
votes
1answer
266 views

MVC Abstract Base Controller Override parameter type for modelbinding

For simplicity's sake, lets say I have the following Abstract Base Controller Class: public abstract class RESTController : Controller { public abstract JsonResult List(); public ...
0
votes
3answers
728 views

ASP.NET MVC DropDownList: Getting the Selected Text (rather than the Value)

Once upon a time, I had a DropDownList with Options built using this code: <%= Html.DropDownList("SomeName", someSelectList)%> which produced HTML like this: <select id="SomeName" ...
0
votes
1answer
180 views

Applying Required Attribute Valiation on a Collection, IEnumberable

how can I apply Required Attribute like validation to the following without knowing how many elements will be in each collection: public class MyViewPageViewModel { [Required] public ...
0
votes
3answers
334 views

Bind model back when displayed with DisplayFor template

I have the model public class PersonViewModel { public Guid Id { get; set; } public string Firstname { get; set; } public string Lastname { get; set; } } which is nested in an other ...
0
votes
1answer
154 views

Partials With View Data Object

I have the following ViewData that I pass into a view. public class MerchantSignUpViewData : BaseViewData { public Merchant Merchant { get; set; } public Address Address { get; set; } ...
0
votes
2answers
289 views

Model Binding with Ajax Form

i m using asp.net mvc2 and i m submitting a form through ajax using jquery. in this scenario model binding does not work Here is my View code <%using (Html.BeginForm("MeetingTodo", "OA", ...
0
votes
1answer
176 views

ModelBinder NHibernate Complex Object with Collections

Below, on initial load (Edit), everything displays fine. However, when I POST (Action below), it looks like it goes and tries to grab the ProductAttribute models separately, with the Product's id, ...
0
votes
1answer
228 views

ASP.NET MVC2 UpdateModel not updating a public property included in whitelist

I have a class Foo with a field UpdateMe of type Confirmation as described below.. public class Foo { public Confirmation UpdateMe{get;set;} public int BarInt{get;set} } public enum Confirmation ...
0
votes
1answer
173 views

How can I bind a model object using Controller.TryUpdateModel<TModel> Method (TModel, String, String[], String[]) to exclude some properties?

Let's say I've the following model public class MyClass { public type1 Property1 { get; set; } public type1 Property2 { get; set; } public type1 Property3 { get; set; } public type1 Property4 ...
0
votes
1answer
379 views

ASP.NET MVC 2 Model Binding: How to debug a partially failed model binding on post back?

We had a View Model that looked like this: public class myViewModel { public Contract contract {get;set;} public Vendor vendor {get;set;} } public class Contract { public int contractID ...
0
votes
2answers
177 views

ASP.NET MVC 2: What Model property datatype will autobind an html select (DDL) with multiple selections?

The customer has a Model property that requires a comma separated list of selected options. We present their select list (DDL) as a multi-choice drop down. What would the property datatype look like ...
0
votes
1answer
275 views

Cannot get my html input array to serialize into a List<string> in Asp.Net mvc

I am attempting to implement a tagging system into my asp.net MVC project. When a user edits or adds a task, they can add any amount of tags they want before submitting. I am using the Jquery Tagit ...

1 2