我在WebGrid上构建了一个html <table>
,我想拥有一个独特的数据属性&#39;每行的价值。
是否可以包含这些&#39;行? (<tr>
),&#34; Id&#34;还是自定义值?
我想拥有的是这样的:
<table>
<tr data-id="customValue"></tr>
<tr data-id="anyOtherName"></tr>
<tr data-id="ThirdOptionValue"></tr>
</table>
但我不知道WebGrid有任何选择会产生这种结果。
我希望拥有的一个例子(但使用WebGrid):
@foreach (var item in Model)
{
<tr data-id="@item.Id">
<td>...</td>
</tr>
}
有可能吗?