如何使用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);
});