MVC WebGrid设置呈现的ID

时间:2012-01-24 16:02:28

标签: asp.net-mvc webgrid

使用MVC 3中的WebGrid如何在呈现时指定控件的名称,即呈现时表的id ??

var someGrid = new WebGrid(source: Model.Users, defaultSort: "Name", rowsPerPage: 50);

当呈现为表格时,它显示为

<table class="grid">

没有设置id,我想使用jQuery id选择器访问此表但不能。任何帮助表示赞赏。

我想要的是<table id="someIDWhichIset">

由于 尼尔

1 个答案:

答案 0 :(得分:25)

当你渲染你的桌子时,就是你给它的id。 @someGrid.GetHtml(htmlAttributes: new {id ="someIDWhichIset"}, columns: ....