2

我在 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?谢谢你的帮助。

4

1 回答 1

1

看起来像是这里的一些简单 jQuery 的案例..

//Array for ids
var ids = new Array();

//Go through each item in the checked box list with name checkedRecords
//if the item in question is checked then insert it's value into an array
$('input[name=checkedRecords]').each(function () {
     if ($(this).is(':checked')) {
         ids[ids.length] = $(this).val();
     }
}
于 2013-04-01T20:20:08.550 回答