I am working a program where one display item gets truncated. The Edit view uses a TextAreaFor and that works. The data in the TextAreaFor wraps.
<span class="vertical-space spaced-field">@Html.TextAreaFor(m => m.Number, new { style = "width: 175px;"})</span>
But when the view displays it is truncated.
<body>
@foreach( var item in Model.OrderBy(p => p.EntryDate.Value))
{
<tr>
.
.
<td>@item.Number</td> ------ display truncated. Does not wrap
</tr>
}
</body>
How would make it wrap like it does in the Edit view