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
965
Hide Embedded Editor, not cell, in UltraWinGrid
posted

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!

Parents Reply Children