I have WinGrid with programatically added column for checkboxes
myDataTable.Columns.Add("CheckBox", typeof(bool));
ultraGrid1.DataSource = myDataTable;
User can Hide/Display this grid from the screen but after Hide all checkboxes disappiared. I tryed
ultraGrid1.UpdateData();
but it doesn't help.
It works. I just put UpdateData to the wrong place