Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
15k views

Html attributes for EditorFor() in ASP.NET MVC

Why can't I pass in html attributes to EditorFor()? eg; <%= Html.EditorFor(model => model.Control.PeriodType, new { disabled = "disabled", readonly = "readonly" }) %> I don't want to ...
11
votes
2answers
3k views

Html5 Placeholders with .NET MVC 3 Razor EditorFor extension?

Is there a way to write the Html5 placeholder using @Html.EditorFor, or should I just use the TextBoxFor extension i.e. @Html.TextBoxFor(model => model.Title, new { @placeholder = "Enter title ...
9
votes
2answers
4k views

Rendering the field name in an EditorTemplate (rendered through EditorFor())

I'm currently building the Admin back-end for a website in ASP.NET MVC. In an ASP.NET MVC application, I've started using the 'EditorFor' helper method like so: <div id="content-edit" ...
8
votes
2answers
2k views

Radiobuttons instead of dropdownlist in mvc 3 application?

I have a View where the model has a collection of items. Then I have an EditorFor template that takes care of creating a dropdownlist for the user to select one of a limited number of values for each ...
7
votes
1answer
1k views

ASP.NET MVC: Using EditorFor() with a default template for enums

I've written an EnumDropDownFor() helper which I want to use in conjunction with EditorFor(). I've only just started using EditorFor() so am a little bit confused about how the template is chosen. ...
5
votes
4answers
3k views

MVC and EditorFor width

Can I set the width of an EditorFor control on my View? I have set a few parameters: [Required, DisplayName("Payee Name"), StringLength(50)] public string Name { get; set; } However, I ...
5
votes
1answer
1k views

Overriding the default EditorFor template-selecting in ASP.NET MVC 3 RC

I'm creating a MVC-application which currently uses EditorFor to gennerate a lot of views. The whole view is basically just an EditorForModel, and it works great. However, I've reached one small ...
4
votes
3answers
140 views

MVC 3 without using Razor?

Is the Razor engine really needed to create an MVC3 site with EditorFor syntax? Almost all the examples I've seen are using Razor. Were working on our first MVC project, and would rather not be on ...
4
votes
1answer
2k views

Override EditorForModel Template

You can provide alternate templates for individual types, but is it possible to override the template that wraps the label, field and validation up. Change: <div class="editor-label"><label ...
4
votes
1answer
990 views

Using EditorFor<> to render a drop-down list

So far we can use Html.EditorFor() to dynamically render the appropriate template for a datatype - e.g. string, int, or a custom type, say 'Address'. Now I want to use EditorFor() to render a ...
3
votes
2answers
116 views

ASP.NET MVC: Accessing ViewModel Attributes on the view

Is there any way to access any attributes (be it data annotation attributes, validation attributes or custom attributes) on ViewModel properties from the view? One of the things I would like to add a ...
3
votes
1answer
371 views

MVC EditorFor inside Another EditorFor

I have an EditorFor Template for a Model Role as below. I also have EditorFor for Date which works fine when I use EditorFor directly from View but when I have EditoFor inside an editor for it doesn't ...
3
votes
1answer
963 views

ForEach with EditorFor

I have got an Entity model which contains a collection of Message objects which are of the type Message which has several properties, including content, MessageID, from, and to. I have created an ...
2
votes
1answer
75 views

How do you embed a razor EditorFor View

I have a composable web application where the user enters an item number and one of a number of processors is invoked to handle the action based on what type of item it is. Each "processor" is in a ...
2
votes
1answer
99 views

Trying to use EditorFor with an ICollection<string> in an ASP.NET MVC3 View?

I'm trying to display a class object in a Create view, where a property is an ICollection<string>. For example... namespace StackOverflow.Entities { public class Question { ...
2
votes
2answers
498 views

Binding nested model with MVC3 on HttpPost

I am new to MVC3. I have a submit button on a form and I want to bind a model which has 2-3 nested object models with many properties inside. Is there a way to bind these nested objects without ...
2
votes
1answer
2k views

EditorFor collection of items in my model

My ViewModel has a property that is a collection of another of my model entities, in this case CategoryTags (and each tag has a Tag and an ID). 1) Am I correct in understanding that Html.EditorFor() ...
2
votes
2answers
1k views

EditorFor ignores tabindex. How do you set a tabindex?

The use of tabindex seems to only work for htmlhelpers like Textboxfor and not EditorFor For example; <%: Html.TextBoxFor(model => Model.MyItem, new { @tabindex = "3" })%> Produces a ...
2
votes
1answer
179 views

T4MVC does not support DisplayTemplates and EditorTemplates

I've noticed this when I used the following in my view: <% Html.RenderPartial(MVC.Shared.Views.EditorTemplates.ClientOnDocuments); %> The line above returns just the name of the view, so in ...
2
votes
1answer
232 views

How do I make Html.EditorFor work with composite objecs

I am faced with a style difficulty, I am currently building a site with the asp mvc framework. I am a big fan of the html.EditorFor option in the templates that generates a realy nice form for me. ...
2
votes
2answers
271 views

asp mvc 2 EditorFor strange behavior

ok i've defined a shared editor for string like the following <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> <%= Html.LabelFor(model => model) %> ...
2
votes
1answer
547 views

Define EditorTemplate for child collection in viewmodel

I've got a model which contains a List of QuestionEditModel for which I want to use an EditorFor. Normally, I would just call EditorFor on the collection and MVC will do the rest. However, I need the ...
2
votes
1answer
636 views

.Net MVC UserControl - RenderPartial or EditorFor

I have a View that contains a usercontrol. The usercontrol is rendered using: <% Html.RenderPartial("GeneralStuff", Model.General, ViewData); %> My problem is that the usercontrol renders ...
2
votes
1answer
634 views

Unexpected Html.EditorFor behavior in ASP.NET MVC 2

I am getting some unexpected behavior from Html.EditorFor(). I have this controller: [HandleError] public class HomeController : Controller { [AcceptVerbs(HttpVerbs.Get)] public ActionResult ...
2
votes
1answer
765 views

ASP.NET MVC 2 RC: How to use the EditorFor to render correct name attributes for a List<>?

In the MVC RC 2 docs, we find: Expression-based helpers that render input elements generate correct name attributes when the expression contains an array or collection index. For example, the ...
2
votes
2answers
1k views

ASP.Net MVC 2.0: EditorFor setting name via attributes

Just wondering how do I mimic the following using attributes... <%= Html.EditorFor(x => x.SportProgramIdList, "FormMultiSelectDropDownList", "SportProgramIds")%> I know I can specify the ...
1
vote
1answer
107 views

How to set Id for EditorFor() html helper in asp .net MVC3

I used this to override framework generated id @Html.EditorFor(model => model.cost, new { id = "checkCost" })But unfortunately id is not changing. i.e When i use string d = ...
1
vote
3answers
112 views

MVC 3 dynamically add a viewModel to the View

I have some viewModels similar to these: public class ResturantViewModel { public ResturantViewModel() { Clients.Add(new ClientViewModel()); } public string MyProperty {get;set;} ...
1
vote
0answers
80 views

Helper `@Html.EditorFor` is displaying a value of another field?

In my application, for some reason, the URL field is displayed the value of another field. I believe it is displaying the value of the field Palavra chave I did some tests: <div> ...
1
vote
2answers
224 views

Input with date format set from ViewModel and html class attribute

I am working with razor view engine in asp.net mvc3. Now, I need an input for a DateTime which should display the value in a fixed format (say dd-MMM-yyyy). So I can do: ...
1
vote
0answers
349 views

MVC3 Custom EditorFor DateTime and DisplayFormat attribute

I've created a custom EditorFor DateTime and added a classname to the textbox @model DateTime @Html.TextBoxFor(m => m, new { @class = "date-time-picker" }) So that I can connect jquery ...
1
vote
2answers
361 views

MVC3 Html.EditorFor isn't rendering a single thing in my View

public class RegisterViewModel { //Plain POCO Properties public RegisterModel RegisterModel { get; set; } //Meant to be used in SelectLists. public IEnumerable<CityModel> Cities ...
1
vote
2answers
118 views

Is there a way to access DataAnnotations when building MVC3 EditorFor templates?

Suppose I have a view model with a property that looks something like this: [Required] [Display(Name = "Your name")] public string Name { get; set; } I want to build an EditorFor template that ...
1
vote
0answers
228 views

MS MVC3 Nested EditorFor and View Templates with same ViewModel

I have a hierarchy of Models I need to render out editors for. I want to have a nice ViewModel that contains all the info needed for each part of the hierarchy to render itself and have that ...
1
vote
2answers
537 views

MVC3 EditorFor dynamic property (or workaround required)

I am building a system which asks questions and receives answers to them. Each question can have an aswer of its own type. Let's limit it to String and DateTime for now. In Domain, question is ...
1
vote
1answer
837 views

Trouble getting DropDownListFor to work on EditorFor in MVC3

I've got a pretty simple problem that has a solution I'm not able to find. Given the following model: public class InfoViewModel { public SelectList States { get; set; } ...
1
vote
3answers
1k views

How to disable input field's autocomplete with EditorFor?

<%= Html.EditorFor(product => product.Name) %> I need the generated output to have autocomplete="off" attribute set. What I'm missing? Edit: I'm looking an extension method for EditorFor ...
1
vote
1answer
1k views

Hide editor-label for public property when calling EditorFor(…)?

When calling Html.EditorFor(m => m), where m is a public class with public properties, a hidden input and a label are displayed for properties with the [HiddenInput] attribute. How can I hide ...
1
vote
2answers
940 views

ASP.NET MVC UI Template: How to mix an IList Model property with EditorFor( m => m.subModel)?

Say you have this: public class ShoppingCart { public IList<CartItem> cartItems {get; set; } } And you do this to render the class: <%= EditorFor( m => m.ShoppingCart, ...
0
votes
1answer
47 views

create dropdown list using enum [closed]

Possible Duplicate: MVC3 Razor DropDownListFor Enums I'm a newbie in ASP.NET MVC3 (REALLY NEW). I want to create a Drop Down List Box for four year levels of students. I have: "First", ...
0
votes
1answer
69 views

MVC3 collection model binding with EditorFor

Regarding this post and this other one. Suppose I have the following: public class Foo { public string Value1 { get; set; } public string Value2 { get; set; } } public class BarViewModel { ...
0
votes
0answers
20 views

EditorFor custom template is not used

I have a editor template named "PageControls" that fetches "PageQuestionControls" to be put on the page like: @Html.EditorFor(x => x.PageQuestionControlList). All "PageQuestionControls" will ...
0
votes
0answers
15 views

Prepopulate EditorFor control

I am very new to all of this. What I would like to do is when going to a Create Form I would like to pre-enter data from the previous view eliminating the need for the user to type in data again. ...
0
votes
2answers
154 views

Alternating HTML table row classes using MVC3 EditorFor template

I have googled as best I can but to no avail, hopefully this is a simple problem! I am using an Html.EditorFor for a collection in a ViewModel object. But I want the alternating rows of the table ...
0
votes
2answers
125 views

@Html.EditorFor() Renders DropDownList Instead of CheckBox

I'm new from WebForms to MVC 3 and have an issue with the @Html.EditorFor() helper method. I have a strongly typed view that represents data from a database, and one of the methods is of type bool?. ...
0
votes
1answer
181 views

asp.net-mvc3 EditorFor template name issue

i'm having a strange issue regarding the editorFor helper from MVC3. Here's the thing: i'm trying to display a checkboxList and it works if i don't call explicity the template name. However if i try ...
0
votes
1answer
140 views

MVC3 EditorFor and generic types throws error

I have a Generic type SelectableViewModel public class SelectableViewModel<T> where T : class { public SelectableViewModel(T model) { Model = model; } public T Model { ...
0
votes
1answer
940 views

make Html.Editorfor field readonly in mvc3

I am using this, an editor template (located in the Shared\EditorTemplates folder in my solution) <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.DateTime?>" ...
0
votes
2answers
321 views

MVC3 DataType.Date EditorFor Outputting the Wrong Class in HTML

I have an MVC3 project. I have 2 model classes. Lets call them FooYes and FooNo. I created controllers for each. I created CRUD views for both. I then implemented the jQuery DatePicker according to ...
0
votes
2answers
183 views

How do I create a Html.EditorFor for my model in order to save time?

I currently only have the create view for my Album class: @model MvcApplication1.Models.AlbumViewModel @{ ViewBag.Title = "Index"; } <h2>Index</h2> <script ...

1 2