Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use LabelFor for header row in Index view

I am trying to leverage DataAnnotation values in ASP.NET MVC Index view. Interesting, code generator uses field names (eg., BlogPost) as opposed to Html.LabelFor(m => Model.ColumNames["BlogPost"]) or something similar (I made it up).

Does it mean, that if the Model is IEnumerable (as in Index view), then it is not possible to get to the Display Name that is specified by DataAnnotation? Hard to believe...

My code is currently a mix of MVC 2 and MVC 3, if it makes any difference.

like image 241
Felix Avatar asked Jan 17 '11 01:01

Felix


People also ask

What is LabelFor?

<input type="submit" value="Submit">

Does the controller return a view?

A controller action might return a view. However, a controller action might perform some other type of action such as redirecting you to another controller action.

What is Index in MVC?

In this case, the Index() method is called on the ProductController class. The Index() method is an example of a controller action. A controller action must be a public method of a controller class. C# methods, by default, are private methods.


2 Answers

You should, at the very least, be able to get what you want by using a partial view (ascx for WebForms) or a Display/Editor template. In your index page you can loop over your enumerable and pass the item into either a partial view or a template.

There may be a way to do it without having do as I've suggested (and I would be interested in seeing the answer), but what I've suggested should work fine.

EDIT:

After some clarification, here is my updated answer.

You can still get the label for a property while still respecting the DisplayAttribute in data annotations. I tried this real quick and it seems to work fine.

In my view I have the following:

Html.LabelFor(m => m.BlogPosts.First().BlogPostTitle)

This worked even if there were no items in the enumeration itself. When I first tested this I got the property name, then I added decorated the property with the DisplayAttribute and the value of the name property was displayed instead of the standard property name.

like image 184
Brian Ball Avatar answered Nov 15 '22 12:11

Brian Ball


In MVC 4, the HtmlHelper extensions in the DisplayNameExtensions class allows the following (this is the default scaffolding of a list with column headings)

@model IEnumerable<Entity.Foo>

<table>
    <tr>
        <th>
            @Html.DisplayNameFor(model => model.Bar)
        </th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.Bar)
        </td>
...

This is because DisplayNameFor has overloads for both TModel and IEnumerable<TModel>:

    public static MvcHtmlString DisplayNameFor<TModel, TValue>
                       (this HtmlHelper<IEnumerable<TModel>> html, 
                        Expression<Func<TModel, TValue>> expression);
    public static MvcHtmlString DisplayNameFor<TModel, TValue>
                       (this HtmlHelper<TModel> html, 
                        Expression<Func<TModel, TValue>> expression);
like image 21
StuartLC Avatar answered Nov 15 '22 12:11

StuartLC