0

How can I access selected members of a Telerik Grid using jquery? I have no idea about this, I tried the below method, but doesn't alert the innerText when select a row.

Here is My Grid:

            <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);

});
user793468
  • 4,898
  • 23
  • 81
  • 126

0 Answers0