Posted 07 Jul 2011 Link to this post
Posted 08 Jul 2011 Link to this post
protected
void
RadGrid1_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridEditableItem && e.Item.IsInEditMode)
GridEditableItem editItem = (GridEditableItem)e.Item;
GridDropDownListColumnEditor dropDownEditor = (GridDropDownListColumnEditor)editItem.EditManager.GetColumnEditor(
"Dropdown1"
);
dropDownEditor.ComboBoxControl.Width = Unit.Pixel(20);
}