RadControls for ASP.NET AJAX
This method provides reference to the DataItem object (data container). Useful to obtain data from a
particular row cell passing the UniqueName of the column as an indexer.
Example:
CopyASPX
<telerik:RadGrid ID="RadGrid1" runat="server">
<ClientSettings>
<ClientEvents OnRowDataBound="RadGrid1_RowDataBound" />
</ClientSettings>
</telerik:RadGrid>
CopyJavaScript
function RadGrid1_RowDataBound(sender, eventArgs) {
var employeeName = eventArgs.get_gridDataItem().get_dataItem()["EmployeeName"];
}