Posted 18 Jan 2011 Link to this post
Posted 19 Jan 2011 Link to this post
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridEditFormItem && e.Item.IsInEditMode)
GridEditFormItem edititem = (GridEditFormItem)e.Item;
RadComboBox combo1 = (RadComboBox)edititem.FindControl(
"RadComboBox 1"
);
// RadComboBox placed in FormTemplate
// select item in combo1
}