How can you specify the row id or class with a specific id?
<tr id="row1">
Or even this is ok
<tr class="row1">
I was thinking something like this would work but it doesn't.
@grid.GetHtml(
rowStyle: "row_" + grid.Column(columnName: "Id")
Anyone have any idea how i can possibly use the htmlAttributes or something to get this?
If i was using the for loop then thats easy but the WebGrid allows me to sort and page.
@foreach (var item in Model)
{
var rowid = "row" + @item.Id;
<tr id="@rowid">