Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
35
EditorComponent in cell showing only when mouse is over.
posted

on InitializeRowEvent I assign UltraControlContainerEditor to EditorComponent of cell. its added successfully. but the problem is that control show only when we mouse over it or click on sell. 

e.g dropdown or any control . 

i am adding in following way . 

UltraControlContainerEditor uce= new UltraControlContainerEditor();

  Infragistics.Win.UltraWinEditors.UltraComboEditor cmb = new Infragistics.Win.UltraWinEditors.UltraComboEditor();

  cmb.Items.Add(lstItem);

 cmb.DropDownStyle = DropDownStyle.DropDownList;

 uce.EditingControl = (Control)cmb

 e.Row.Cells["Answer"].EditorComponent = uce;