List item and MVC4 styling
I have a set of list items that I am using that need to be a link and http post back to the controller. I had to do some custom styling on them, just not sure the best way to handle it. This is what I have:
<ul data-role="listview" class="listItems">
@foreach (var item in Model.shares)
{
<li class="outerListItem">
<div class="accountLI">@item.description</div>
<div class="currentLI">@item.Num1</div>
<div class="availableLI">@item.num2</div>
</li>
}
</ul>
Usually I would use @Html.ActionLink(text, action, controller), however I need the 3 'columns' to be formatted.
Thanks,
Brian