The modelbinding tag has no wiki summary.
0
votes
1answer
377 views
Model binding for mvc3 to edit form data on the same view
I am new to MVC3 and after 2 days of reading, I cannot find what I am doing wrong.
Here is the scenario:
I have a strongly typed view:
<%@ Page Title="" Language="C#"
...
0
votes
1answer
39 views
MVC3 in situ table update
I'm a bit confused.
I have a pretty standard MVC3 setup: Home Controller/Index method, Strongly typed view to a ViewModel.
My ViewModel is a collection of three generic lists (Schemes, Types, ...
0
votes
1answer
234 views
aspnet webapi bind query string to object
<HttpGet()>
Public Function Search(<FromUri()> ByVal name As Name) As HttpResponseMessage
// get params from complex type
// or check for model validation
name.firstName;
...
1
vote
2answers
105 views
Custom Model Binder Which Will Only Work In One Area of MVC Application
I've used custom model binders which are configured in the Global.asax file. Is it possible to only use this model binder under certain areas of the application?
public class CreatorModelBinder : ...
2
votes
3answers
374 views
Why servicestack could not make model binding on json post request?
$.ajax({
type: 'POST',
url: "/api/student",
data:'{"x":3,"y":2}',
dataType: "json",
complete: function (r, s) {
debugger;
},
...
1
vote
2answers
262 views
Is there a converter parameter for bindings in the Backbone.Modelbinding plugin for Backbone.js?
I recently took over a large Backbone.js project which uses the Backbone.Modelbinding plugin to provide data-binding between models and views, with direct reference to the model attribute names in a ...
0
votes
1answer
50 views
Can I use the Id parameter in a MVC 3 controller action as the Id of a complex parameter?
I have a controller action as the below
public class HomeController : BaseController
{
public JsonResult Index(ComplexObject customObject)
{
...
}
...
}
This is what ...
1
vote
1answer
354 views
bindmodel vs createmodel asp mvc 3
I am developping my first application in Asp. I am using the environment Asp.NET MVC 3.
I have a controller Action that has a single parameter. The type of this parameter is a complex object.
public ...
0
votes
1answer
308 views
How to properly model bind json with sub-objects to ASP.NET MVC ViewModel?
Given the following client side code fragment:
var vm = {
Input : "Label: Value",
Rules : [
{ Name : "RemoveString",
Params : [
"Label: "
]
}
]
};
...
2
votes
3answers
2k views
Successful Model Editing without a bunch of hidden fields
In Short: How do I successfully edit a DB entry without needing to include every single field for the Model inside of the Edit View?
UPDATE
So I have an item in the DB (an Article). I want to edit an ...
1
vote
1answer
233 views
MVC Model binding / validation
After a year or so of MVC experience I'm still confused about one thing: How to effectively use the DataAnnotations with ModelState.IsValid? For simple tutorial example this all works just fine and I ...
1
vote
1answer
431 views
TinyMCE model binding on postback
I'm trying to use the TinyMCE editor in an MVC3 project of mine. I have it displaying and working fine in the browser but can't get the data in it to postback with the form.
My view (snippet):
...
1
vote
1answer
296 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 ...
0
votes
1answer
1k 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
1k 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
475 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){
...
1
vote
1answer
933 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
730 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 ...
0
votes
0answers
331 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 ...
5
votes
1answer
2k 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 ...
1
vote
2answers
1k 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 ...
12
votes
2answers
8k 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 ...
1
vote
2answers
1k 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 ...
2
votes
1answer
2k 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 ...
2
votes
2answers
934 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
985 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 ...
2
votes
1answer
2k 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 ...
0
votes
1answer
225 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 ...
2
votes
4answers
426 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 ...
0
votes
2answers
945 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 ...
3
votes
1answer
2k 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 ...
0
votes
1answer
662 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
4k 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" ...
4
votes
2answers
717 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";.
...
0
votes
1answer
288 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
1k 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
188 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
438 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", ...
1
vote
2answers
99 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
76 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 ...
0
votes
1answer
255 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, ...
1
vote
1answer
524 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", ...
2
votes
2answers
598 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; ...
0
votes
1answer
304 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
...
1
vote
1answer
177 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 ...
0
votes
1answer
304 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 ...
4
votes
2answers
2k 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 ...
0
votes
1answer
771 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 ...
3
votes
3answers
5k views
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" />
...
0
votes
2answers
262 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 ...

