Hello,
I have an embedded editor in an UltraWinGrid and would like to know if it possible to hide the control.
I know I can set the cell's hidden value to false but this does not give me the desired affect as we have other functionality that no longer functions if the cell is hidden.
Below is an example piece of code I tried and while it does return to me the RenderingControl setting Visible = false has no affect. Also, we have no EditorControl on this form as it is not needed.
MyControlContainer myControlContainer = (MyControlContainer)ultraGridCellPlayerName.Editor;MyControl myControl = (MyControl)myControlContainer.RenderingControl;myControl.Visible = false;
Thanks in advance!
Anthony said:I know I can set the cell's hidden value to false but this does not give me the desired affect as we have other functionality that no longer functions if the cell is hidden.
What other functionality are you referring to?
Our grid is like a large checkerboard and uses CellSelect ClickActionType.
Most of the cells have a control in them.
The biggest thing I noticed when the cell was hidden is that we could no longer click on it, we have a right click context menu as well as multi cell select by dragging the mouse so we'd like the user to be able to click anywhere in the grid.