這裏是我當前視圖代碼:MVCContrib,Html.Grid:如何將基於行的id附加到td標籤?
<% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"])
.Columns(column =>
{
column.For(c => c.ID);
column.For(c => c.Name);
}).Render();
%>
我想一個HTML 「id」 屬性附加到每個 「名」 td標籤這樣:
<table class="grid">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr class="gridrow">
<td>1</td>
<td id="parameter_1">Address</td>
</tr>
<tr class="gridrow_alternate">
<td>2</td>
<td id="parameter_2">Phone Number</td>
</tr>
</tbody>
</table>
我的問題:
我該怎麼做?
我認爲'屬性'擴展方法,但我不知道如何才能使它工作。
吉姆,我實際上得到它的工作,檢查我編輯的答案。 – 2009-11-18 17:49:57
@Josh Pearce:我仍然無法編譯你的答案。如果第三方有意見,這將是很好的。 – 2009-11-19 21:40:36