使用MVC 3中的WebGrid如何在呈现时指定控件的名称,即呈现时表的id ??
var someGrid = new WebGrid(source: Model.Users, defaultSort: "Name", rowsPerPage: 50);
当呈现为表格时,它显示为
<table class="grid">
没有设置id,我想使用jQuery id选择器访问此表但不能。任何帮助表示赞赏。
我想要的是<table id="someIDWhichIset">
由于 尼尔
答案 0 :(得分:25)
当你渲染你的桌子时,就是你给它的id。
@someGrid.GetHtml(htmlAttributes: new {id ="someIDWhichIset"}, columns: ....