The editortemplates tag has no wiki summary.
4
votes
1answer
465 views
Asp.net MVC with Entity, using jquery to pass data into List. Does not work
Edit 3 / Final
This is the fully working example using .NET MVC, Jquery and editor templates.
https://www.dropbox.com/s/t4yxbhkuowyd7va/exerciseTest.rar
Edit 2
It finally works ! Thanks to the ...
0
votes
0answers
43 views
Get model value from editortemplate MVC3 telerik
All.
I need to get model value to set NumericTextBoxFor MaxValue
Here's my code
@Html.Telerik().NumericTextBoxFor(model => model.costSaving).MaxValue(modelvalue)
Please help me
0
votes
1answer
137 views
Custom Filename for @Html.EditorForModel()?
so I have the following code:
@model IEnumerable<My_School_Book.Models.Mark>
@{
ViewBag.Title = "Marks";
}
<div class="row-fluid">
<h1>Assignment Marks:</h1>
...
0
votes
1answer
265 views
mvc3, editor template, css clas, maxlength and size
I have an editor template as following but class, maxlength and size attributes are not getting to the source.
@using System.Globalization
@model DateTime?
@Html.TextBox("", (Model != null ...
0
votes
1answer
147 views
EditorForModel - Duplicate labels when using editorfor
I am using a number of editor templates for different datatypes (string, DateTime, etc.) in my ASP.NET MVC application. For instance, the following is what I am using for strings:
<div ...
1
vote
2answers
853 views
Selecting an alternate EditorFor template for a List
I have an object that represents a food item to order at a restaurant. This object has a list of Modifier Groups (sides, cooking instructions, pizza toppings, whatever) and each list has a list of ...
0
votes
3answers
366 views
Display a byte as a checkbox using a EditorTemplate?
My model class:
public class StatusList
{
public int StatusID {get;set;}
[UIHint("ByteCheckbox")]
public byte Active {get;set;}
}
In /Views/Shared/EditorTemplates I created a file called ...
1
vote
1answer
286 views
Template implementation for Html.ValidationMessageFor
I want to define HTML structure for Html.ValidationMessageFor in a View. This should be similar to EditorTemplates. How can this be done?
1
vote
2answers
477 views
@Html.EditorFor send empty array on post
In my model :
public class WzDetail
{
public Product Product { get; set; }
public bool check { get; set; }
public int PlanQuantity { get; set; }
public int ...
0
votes
1answer
475 views
MVC EditorTemplate for list that is not part of the model
Within my view I call a partialview for a List. In that partial view I seperate that list into two IEnumerables and for each list I want to call the EditorTemplate for ModelType:
My PartialView:
...
1
vote
1answer
367 views
MVC3 - how can I override the template/behavior of EditorFor IEnumerable
I would like to globally replace the default editor with my own. The default just iterates and creates editors for each item in the model.
This doesn't give you control over the html structure (eg ...
1
vote
1answer
424 views
Cannot use TypeConverter and custom display/editor template together?
The scenario
Suppose I have the following two model classes:
public class ProductColor
{
public long Id { get; set; }
public string Name { get; set; }
}
public class Product
{
public ...
0
votes
3answers
397 views
In a custom editor template, how do I access the field name I should use for the edit control? [duplicate]
Possible Duplicate:
How to get model's field name in custom editor template
When outputting an edit control for a special type of entity, for example, let’s say a color or something:
...
3
votes
1answer
3k views
Custom Asp.net MVC 3 editor template not getting used
I have an MVC 3 web app that uses Razor view engine. I would like to extend default editor templates so I'd like to add additional HTML5 attributes to input elements like autofocus.
I'm using ...
0
votes
1answer
1k views
IEnumerable property with MVC3 EditorTemplate
Similar to this post IEnumerable model property in an ASP.NET MVC 3 Editor Template, I have
Model
public class Student
{
public int StudentId { get; set; }
public string StudentName{ get; ...
0
votes
1answer
296 views
Asp.NET MVC 2 dynamic editor template based on dropdown value
I am working on a model criteria builder. I have a dropdown list with all of the model properties, a dropdown list with static operators (less than, equals, like, etc) and a user input form element ...
1
vote
1answer
278 views
Choosing between CheckBoxFor and TextBoxFor in Editor Template
I've got an editor template that is applied to several data types. Most of them are displayed by TextBoxFor, but I'd like to use CheckBoxFor on the booleans (these are not nullable). As it is now:
...
1
vote
3answers
533 views
MVC3 Editor Template for List Not Populating
Problem: When I load the EditorTemplate for UserModel the UserRoles list does not generate a list of UserRole editors.
My models:
public class UserSearchModel
{
[ScaffoldColumn(false)]
...
1
vote
2answers
907 views
Nullable DateTime, EditorTemplates, JQ UI DatePicker
My intent was to apply the JQuery UI Datepicker to my entire site by creating an EditorTemplate as per this post ASP.NET MVC 2 Templates
@model DateTime
@{
string name = ...
0
votes
2answers
668 views
Apply even/odd style in MVC editor template for List<> model
I'm trying to apply some odd/even style to rows of data rendered by a Razor editor template in ASP.NET MVC 3.
Here is some basic code of my possible view:
@model List<MyProject.Whatever>
...
1
vote
3answers
677 views
Trouble with this simple EditorTemplate for DateTime objects
I'd like to configure the EditorFor template for every datatime objects in any of my models.
I'm getting this error:
\EditorTemplates\DateTime.cshtml(1): error CS1973:
...
0
votes
1answer
357 views
MVC3 editor template for multiple types
I have a model with some parameters that a User should be able to see but not edit and others they should be able to edit. The same is true of the Author. So, I used [UIHint("Author")] and ...
1
vote
1answer
3k views
MVC 3 - Editor template for List<> Model
I am building my first Razor app and really loving it. I am trying to get the low-down on how to create an editor template that renders out an editable list of items without a foreach loop. Is this ...
2
votes
0answers
443 views
MVC In an Editor Template call another Editor Template with the same Model. @Html.EditorForModel(“Detail1”)
I have an editor template and within that editor template i want to call another editor template with the same model (i.e. nested), but it does not seem to display.
ie. ...
7
votes
5answers
1k views
How to create a editor template for DateTime with 3 fields?
I want to create an editor template for DateTime, I need 3 separated fields:
(DropDown) Day | (DropDown) Month | (DropDown) Year
How and where do I create this file? And what do I need ...
2
votes
1answer
120 views
How do I put editor templates in an Eclipse plug-in?
I know how to put plain text and code in the editor. Is it possible to put an editor template programmatically in an Eclipse plug-in?
0
votes
2answers
314 views
Bind model during post of form inside EditorTemplate (on array)/multiple bind prefixes?
I have a complex Model containing an array. For rendering items for this array I'm using EditorFor like this:
for (int i = 0; i < Model.Contacts.Phones.Length; i++)
{
@Html.EditorFor(x ...
1
vote
2answers
405 views
MVC 3 EditorTemplates not working on production
I'm facing a strange problem when deploying my application to the production server.
I've used the Editor Templates to create date pickers (add class to date box and let jquery show the date ...
5
votes
1answer
2k views
How do I use editortemplates in MVC3 for complex types?
I have two classes, Vat and Product. Product has a property of IVat. I am trying to use editor templates in MVC to display a dropdown list of all the Vat objects when creating/editing a Product. ...
8
votes
1answer
2k views
When do I use View Models, Partials, Templates and handle child bindings with MVC 3
new to mvc3, i have a few questions, would appreciate if someone could answer/provide links:
When should I use View Models? Is it not recommended to use the domain? I find that my view models are ...
4
votes
1answer
754 views
Netbeans: C/C++ file-template variables documentation needed
I'm looking for a faq or overview on C/C++ template-file variables in Netbeans (7.0).
(Not to be confused with the template technique). Those you see under Tools > Templates > C++ templates.
e.g.
...
1
vote
1answer
259 views
@if + lambda in an editor template
I have something for which I can't find the right syntax:
/Views/Shared/EditorTemplates/Component.cshtml
@model Website.Models.Component
<div class="editor-field">
@if (x => x.Name == ...
12
votes
3answers
6k views
Problem with MVC EditorFor named template
I have what appears (to me anyway) to be a strange problem...
I created a simple editor template for a SelectListItem (SelectListItem.cshtml in the ~/Views/Shared/EditorTemplates folder), for ...
4
votes
1answer
8k views
IEnumerable model property in an ASP.NET MVC 3 Editor Template
I have a model which has an IEnumerable property (warning pseudo-code to follow)
public class PersonModel {
public string Name { get; set; }
public IEnumerable<AddressModel> Addresses { ...
5
votes
2answers
1k views
Can I Add to the Display/EditorTemplates Search Paths in ASP.NET MVC 3?
I have a standard set of templates for my mvc projects which I want to keep as an external folder in my source control (SVN)
This means that I cannot put any project specific files in this folder as ...
1
vote
1answer
3k views
ASP.NET MVC 3 Data Attributes - Programmatically Set UIHint from Controller
If i have a ViewModel like this:
public class SignupViewModel
{
[Required]
[DisplayName("Email:")]
public string EmailAddress { get; set; }
}
And use EditorFor to render out the form ...
43
votes
1answer
40k views
How to create custom editor/display templates in ASP.NET MVC 3?
I would like to make custom editor templates for different data types in ASP.NET MVC (to use with Html.EditorFor()), including rewriting the existing templates. The ultimate goal is to create a ...
1
vote
2answers
446 views
Required attribute for complex objects
I have a class like this
public class PageReference {
[ScaffoldColumn(false)]
public string Id { get; set; }
public string Name { get; set; }
}
and in my model I use it like this
...
0
votes
1answer
799 views
Retrieve ClientId from Html.TextBoxFor in a EditorTemplates
I want to make a calendar with JQuery out of an EditorTamplates. But I am struggling with getting the id of the input text coming from Html.TextBoxFor. And as I would like to have more than one ...
4
votes
2answers
4k views
ASP.Net MVC 3 - Client side unobtrusive validation for Editor Templates
I am new to ASP.Net MVC 3, facing some issues while trying to implementing client side unobtrusive validation for a editor template I have created for showing date in a custom way.
UI
I need to show ...
3
votes
2answers
813 views
ModelMetadata for complex type in editortemplate in asp.net mvc
I have a viewmodel that includes a complex property of type TestThing which is declared as:
public class TestThing
{
[Display(Name = "String3", Prompt = "String4")]
public string ...
3
votes
1answer
2k views
Editor Templates for List<string>
I am looking to create a generic editor for some basic models in my ASP.NET MVC3 site. Now they can contain strings, booleans, enums and List collections. What I want to do is extend the default ...
5
votes
4answers
2k views
ASP.NET MVC 3 Generic DisplayTemplates
I've just started a project using ASP.NET MVC 3. I'm building on top of an existing object system, so one of the first things I have to do is define display and editor templates for the various types ...
2
votes
1answer
168 views
Storing Editor Templates in external library
Is it possible to create Editor Templates in an external library so that they can be shared between applications? I'm not looking to store cshtml files in a library, just wondering if there was a way ...
1
vote
1answer
750 views
Help with asp.net mvc EditorFor
I have a Project model and a Task model.
say in my controller I have
public ActionResult Create()
{
Project p = new Project();
Task t1=new Task();
Task t2=new Task();
Task t3=new ...
133
votes
3answers
28k views
ASP.NET MVC 3 - Partial vs Display Template vs Editor Template
So, the title should speak for itself.
To create re-usable components in ASP.NET MVC, we have 3 options (could be others i haven't mentioned):
Partial View:
@Html.Partial(Model.Foo, "SomePartial")
...
5
votes
4answers
12k views
ASP.Net MVC 3 EditorTemplate for DateTime Fields Error
This code was converted from some ASP.Net MVC 2 code in this tutorial:
MVC 2 Editor Template with DateTime
It is a custom EditorTemplate for DateTime fields stored as ...
2
votes
2answers
3k views
Error creating EditorTemplates in Razor
I have a perfectly working ascx editor template in ASP.NET MVC 3, and tried to convert it to razor:
Ascx:
<%@ Control Language="C#" ...
4
votes
1answer
2k views
Asp MVC3 Custom EditorTemplate for Collections (Empty or Not)
After much googling, stackoverflowing (?) and blog-reading I still cant completely solve the issue. Hopefully this experts community can come to the rescue!
Given:
A Company class with a field ...
1
vote
1answer
459 views
Why isn't my EditorTemplate firing?
Here's the item from the View
@Html.EditorFor(Function(model) model.BirthDate)
Here's the code from the EditorTemplate (simplified)
@ModelType Date?
<span>
@Html.TextBox("", Model)
...

