I am getting the cell value of a particular row in Telerik MVC Control, through OnRowSelect event using
e.row.cells[1].innerText
But i want to get the value corressponding to the name of Column rather than the key.
SOLUTION 1:
Check if this helps.
var dataItem = $('#GridId).data('tGrid').dataItem(e.row);
alert(dataItem['Id']);
alert(dataItem['Id']);
0 comments:
கருத்துரையிடுக