All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemDataBound1(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem item = (GridDataItem)e.Item;
foreach
(GridColumn col
in
RadGrid1.MasterTableView.AutoGeneratedColumns)
(col
GridBoundColumn)
string
value = item[col.UniqueName].Text;
}