Tagged Questions
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 ...
3
votes
1answer
486 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 ...
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
650 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
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 ...
2
votes
1answer
538 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) { %>
...
1
vote
1answer
289 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
2answers
415 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
2answers
561 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
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
109 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
842 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
2answers
181 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
2answers
283 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
277 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
854 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
185 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
357 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
1answer
181 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
293 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 ...
0
votes
2answers
164 views
Adding multiple Prefixes to DefaultModelBinder MVC2
I've looked at most of the ModelBinding examples but can't seem to glean what I'm looking for.
I'd like:
<%= Html.TextBox("User.FirstName") %>
<%= Html.TextBox("User.LastName") %>
to ...
0
votes
1answer
118 views
ASP.NET MVC - Cleaning Up URLS in Complex Model Binding Scenarios
In one of the applications I am building I have constructed a very flexible attribute-based system for describing products in my database wherein each product can have an indeterminate number of ...
0
votes
1answer
216 views
How do I get model binding to work with a custom object in ASP.NET MVC?
I'd like to adopt ASP.NET MVC Model binding for a rich client application. I have the following controller action:
public ActionResult CreateUser(User profile)
Previously with HTML forms, as long ...
0
votes
0answers
429 views
ASP.net MVC Linq-To-SQL Many-To-Many Field Binding [closed]
Possible Duplicate:
Modeling a many-to-many relationship in ASP.NET MVC using LINQ to SQL
Hi there,
The short version of this question is "Is there a way to gracefully handle database ...
0
votes
1answer
353 views
MVC 2, IoC, ModelView, and Binding
If you can register your Controllers in your IoC implementation then why can't you also have your ModelViews created from your IoC container?
I'm currently using Autofac 1.4 for IoC injection for ...
0
votes
1answer
347 views
ASP.NET MVC 2 UI Templates displaying data without markup. How to fix?
Using EditorFor( model lamda, "viewTemplateName"), my output is completely not as expected. This doesn't produce any errors, but it is rendering output without markup. What am I doing wrong?
The ...
0
votes
1answer
23 views
Exception Causes ModelBinding To Fail
If I receive a generic error in my ASP.NET MVC 2.0 Beta app and catch it. I notice that the next time I post that the model returned to my post is always null. Do I need to clear out the ModelState ...
0
votes
1answer
487 views
Unit test a controller with custom model binder
In my application I have a custom model binder that I set to the DefaultBinder in the global.asax:
ModelBinders.Binders.DefaultBinder = new XLDataAnnotationsModelBinder();
When writing unit tests ...
0
votes
1answer
334 views
Action with set of fixed parameters in url and a set of optional parameters either from post or from querystring
In my route collection I have
routes.MapRoute(
"Recalculate",
"{siteLanguage}/Formula.mvc/relcalculate/{identifierString}/{formulaId}/{wratio}/{customRecalcString}",
new { controller = ...