This is a very simple question.

I have a Html.helper:

@Html.DisplayFor(modelItem => item.Text)

How to I cut down the string from item.Text to a specific length? I wish you could do a SubString or something directly on the item.Text.

If youre wondering why I want this, its because the strings are very long, and I only want to show a bit of it in like the index view etc.

link|improve this question

You probably want to take care of that before you send it to the view. – Mikael Östberg Sep 2 '11 at 9:19
feedback

3 Answers

up vote 2 down vote accepted

You could just add a property onto your view model that does the truncation of the string and display that instead:

// View model
public string TextShort { get { return Text.Substring(0, 10); } }

// View
@Html.DisplayFor(modelItem => item.TextShort)
link|improve this answer
Awesome solution. Cos I have other properties that needs to be manipulated differently in the view, and this will make it easy. Didnt think of that. Thanks. – Kasper Skov Sep 2 '11 at 9:38
feedback

There are 3 possibilities that could be considered:

  1. Strip the text in your mapping layer before sending it to the view (when converting your domain model to a view model)
  2. Write a custom HTML helper
  3. Write a custom display template for the given type and then 3 possibilities to indicate the correct display template: 1) rely on conventions (nothing to do in this case, the template will be automatically picked) 2) decorate your view model property with the UIHint attribute 3) pass the template name as second argument to the DisplayFor helper.
link|improve this answer
Good analysis. As always :) Thanks. – Kasper Skov Sep 2 '11 at 9:35
feedback

Edited : New Answer

what about

@{
 modelItem.ShortText= model.Text.Substring(0, ....);
}

@Html.DisplayFor(modelItem => item.ShortText)

The prototype for DisplayFor is :

public static MvcHtmlString DisplayFor<TModel, TValue>(
    this HtmlHelper<TModel> html,
    Expression<Func<TModel, TValue>> expression
)

And the modelItem is a dynamic I think, so it should be possible to add anew property to the view model.

link|improve this answer
-1 this will not work - that parameter is an expression that is walked by the DisplayFor method to identify the member that is to be displayed - it has nothing to do with the output – Andras Zoltan Sep 2 '11 at 9:32
ahh ok thank you – Preet Sangha Sep 2 '11 at 11:38
Editing and presenting another idea. – Preet Sangha Sep 2 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.