or
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs
e)
{
if (e.Item is GridDataItem
&& e.Item.OwnerTableView.Name == "Detail")
{
GridDataItem item1 = (GridDataItem)e.Item;
DropDownList combo = (DropDownList)item1.FindControl("DropDownList1");
combo.Attributes.Add("onChange", "return Change('" + item1.ItemIndex +
"');");
}
}
The reference link from the code fetched is as follows :
http://www.telerik.com/community/forums/aspnet-ajax/grid/set-value-to-cell-in-detailtables-in-radgrid-using-javascript.aspx
Regards!
Majith.B