I'd like to customize the text displayed by the GridHTMLEditorColumnEditor ; I tried that but the content remains empty (the resourceValue column is bound only in the ItemDataBound event):
protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) { if (e.Item is GridEditableItem && e.Item.IsInEditMode) { GridEditableItem editedItem = e.Item as GridEditableItem; GridHTMLEditorColumnEditor editor = (GridHTMLEditorColumnEditor)editedItem.EditManager.GetColumnEditor("resourceValue"); editor.Editor.Content = "my custom text"; } }