Hi
I am dynamically setting the column type as UltraTextEditor. But, the issue is i am not able to edit the Cell
(DisplayLayout.Bands[0].Columns[columnNameKey.Current.Key].EditorControl = new UltraTextEditor()) .....What could be the reason?
Make sure your editor control is part of your form's Controls collection.
using Infragistics.Win.UltraWinEditors;...UltraTextEditor ed = new UltraTextEditor();ed.Visible = false; // This prevents the control from showing except as an editorthis.Controls.Add(ed);ultraGrid1.DisplayLayout.Bands[0].Columns["MyColumn"].EditorControl = ed;
I tried to assign the UltraCheckEditor as a EditorControl, grid Cell displays UltraCheck Editor but not allowing to edit the control........
any solution?