Posted 26 Mar 2011 Link to this post
Posted 28 Mar 2011 Link to this post
Posted 30 Mar 2011 Link to this post
telerik:GridDropDownColumn, i cany find the properties that allow custom text. How can i do this? Thank you. regards, nasri
protected
void
RadGrid1_ItemCreated(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridEditableItem && e.Item.IsInEditMode)
//Check for Edit mode. Here its InPlace.
GridEditableItem editItem = (GridEditableItem)e.Item;
RadComboBox combo = (RadComboBox)editItem[
"ColumnUniqueName"
].Controls[0];
combo.AllowCustomText =
true
;
}
Posted 31 Mar 2011 Link to this post
combo.EmptyMessage =
"SelectOne"
Posted 01 Apr 2011 Link to this post