Tagged Questions
The display-templates tag has no wiki summary.
6
votes
1answer
464 views
ASP.NET MVC Display Template for strings is used for integers
I recently hit an issue with ASP.NET MVC display templates. Say this is my model:
public class Model
{
public int ID { get; set; }
public string Name { get; set; }
}
this is the controller:
...
5
votes
4answers
846 views
How do I override DisplayFor boolean?
How do i create a display template so i can display a bool as Yes or No not a checkbox? Using mvc3
<%: Html.DisplayFor(model => model.SomeBoolean)%>
4
votes
1answer
2k views
ASP.NET MVC 3 Custom Display Template With UIHint - For Loop Required?
If i have a ViewModel like this:
public class MyViewModel
{
[UIHint("SomeTemplate")]
public ICollection<SomeViewModel> Submodel { get; set; }
}
And a strongly-typed View with a line of ...
3
votes
1answer
708 views
MVC 3 multiple DisplayFor-Templates
I'm trying to make a custom template for a basket item list. I need a few different templates, as I have different ways of displaying the item, depending on if it's on the webpage or in a mail. Now my ...
3
votes
2answers
2k views
Using a DisplayTemplate (with DisplayFor) for each item in a collection
I have created a DisplayTemplate for a Comment class, and placed it inside Comment/DisplayTemplates/Comment.cshtml.
Comment.cshtml is properly typed:
@model Comment
Then, I have a partial view ...
2
votes
1answer
71 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
88 views
ASP.net MVC - Display Template for a collection
I have the following model in MVC:
public class ParentModel
{
public string Property1 { get; set; }
public string Property2 { get; set; }
public IEnumerable<ChildModel> Children { ...
2
votes
1answer
78 views
Can you [Obsolete] a DisplayTemplate in Razor?
I created a display template in Razor specifically for displaying currency, which I now want to remove in my code and replace with a standard text display template that accepts a string format (which ...
2
votes
3answers
946 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 ...
1
vote
2answers
41 views
Why isn't ASP.NET MVC 3 resolving my DisplayTemplate for a complex type?
I've been using DisplayTemplates/EditorTemplates for relatively simple types, like DateTime and DateTime?, etc. Now I want to use it to render a more complex type that is handing off my view model. ...
1
vote
3answers
397 views
How to exclude a field from @Html.EditForModel() but have it show using Html.DisplayForModel()
I am reading up on ASP.NET MVC and all of it's fun uses and I just found out about DataTemplates.
In my hurry to test this thing out, I converted one of my simpler models over to using ...
1
vote
1answer
488 views
MvcSiteMap - NullreferenceException when iterating over the Model.Nodes. (ASP.NET MVC3 Razor)
I have some problem with MvcSiteMap. I get NullreferenceException when interating over Model.Nodes because Model is NULL.
I got it working with @Html.MvcSiteMap().Menu() but when I try the samples ...
0
votes
0answers
171 views
DisplayFor not working in EditorFor
ClassA.cs
public class ClassA
{
public string Name { get; set; }
public ClassB MySubClass { get; set; }
public class ClassB
{
public string MyName { get { return "stuff"; } ...
0
votes
0answers
161 views
MVC3 Acessing multiple data types from a display template
I am trying to get PagedList working with a viewmodel, after some reading i understand a display template is the best way to achieve this, however when i create the display template it will not let me ...
0
votes
1answer
259 views
Creating an MVC 3 Razor - Display Template Library for sharing across multiple projects/solutions
Is it possible to put Display Templates in a separate VS project that can then be referenced by my web site projects. I like using display templates but I don't like the idea of re-use via copy and ...
0
votes
1answer
189 views
MVC 3 Razor - Create DisplayTemplate for specific Property Name e.g. WebsiteUrl, IsActive
I have very strict naming conventions for my models and I am wondering if I can leverage this via display templates for common fields like - WebsiteUrl, IsActive, UpdateDate, InsertDate?
Is it ...
0
votes
0answers
120 views
Sample Project of Overriding the Default Object Template in MVC 3?
Is there a sample project that overrides the default object template in order to do a deep dive into navigation properties?
I'm having a hard time figuring this out just from Brad Wilson's blog and ...
0
votes
0answers
153 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. ...
0
votes
1answer
135 views
ASP.NET MVC 3: Output specific view for concrete implementation
I have an IEnumerable of a base type as my model.
I need to display a different bit of HTML in a list depending on what the concrete type is.
So the resulting list might look similar to this in ...
0
votes
1answer
70 views
Is there any way to use Editor and Display templates with Dictionary<K,V> in ASP.NET MVC3?
I usually make use of the Editor and Display templates when my model (or submodels) are List<T> objects. This way I avoid to "spoil" my code with several foreach constructs.
I wanted to know ...
0
votes
2answers
190 views
what would I use in this situation(asp.net mvc 3 display templates)
I have something like this
public class ViewModel1
{
// some properties here
public List<ViewModel2> ViewModel2 {get; set;}
}
public class ViewModel2
{
public string A {get; set;}
...
0
votes
2answers
645 views
How an i make an ASP.NET MVC3 DisplayTemplate which displays the contents of a Collection?
I'm trying to display the contents of a collection, in my View .. but using a DisplayTemplate to handle the definition of the view, for that specialized property/object.
eg.
<div ...