我在 Razor 中使用 MVC 网格并具有以下网格:
@(Html.Telerik().Grid<MVC.Models.List>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(c => c.Id)
.HeaderTemplate(
@<text>
<input type="checkbox" title="check all records" id="checkAllRecords" />
</text>
)
.ClientTemplate("<input type='checkbox' name='checkedRecords' value='<#= Id #>'")
.Template(
@<text>
<input name="checkedRecords" type="checkbox"
value="@item.Id" title="checkedRecords" />
</text>)
.Width(50)
.HeaderHtmlAttributes(new { style = "text-align:center" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(p => p.Description).Width(100);
})
.DataBinding(d => d.Ajax().Select("List", "Home"))
)
我想知道是否有办法获取使用 javascript 检查的记录的所有 ID?谢谢你的帮助。