Hi!
I use wingrid 10.3 to show data from DataSet. On some field change in the grid, some code add a child table in the dataset to read information and then the wingrid show this new datatable as a child band. How can I tell the WinGrid to hide all cilhd bands except the first one.
I tried to use SetDataBinding(MyDataSet, null, true, true); with to last paramater is to hide new bands but it does not works. If possible, I don't want to hide these new bands created manually after my event is executed.
Best regards,
Benoit
Sorry, I made a mistake in my post title. I had to say : Ho to HIDE sub bands created automatically by the datasource
Hello Benoit,
I think that you would be able to set the MaxBandDepth of the UltraGrid to 1 in order to restrict the UltraGrid to show other than the first band of your DataSource.
Please let me know if this is not what you are looking for.
It works great! Thanks a lot