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