使用jquery访问telerik网格中的选定行元素

时间:2012-10-17 18:31:56

标签: jquery asp.net-mvc telerik-grid

如何使用jquery访问Telerik Grid的选定成员?我不知道这个,我尝试了下面的方法,但是当选择一行时不会提醒innerText。

这是我的网格:

            <td><%= Html.MyCustomGridFor("gridName", "refreshAction", "refreshController", GridOptions.EnableSelecting, Model).Columns(column =>
                    {
                        column.Bound(o => o.Code).Title("Code").Width("40px");
                        column.Bound(o => o.Description).Title("Description");
                    }).HtmlAttributes(new { @id = "gridName" , @style = "width: 200px;" })%>
            </td>

jquery的:

$("#gridName").focusin(function(e){
   alert(e.innerText);

});

0 个答案:

没有答案