I have a UltraWinGrid that uses an UltraDataSource containing band 0 and a single child band (Band 1). On the Grid, I set the row selection is to be limited to a single row in band 0. What I'm looking for is when I select a row in Band 0, I want its Band 1 to be the only one expanded in the UltraDataGrid.
Thank you
Track the rows that get expanded and when a new one is expanded, collapse the last one. The Before/AfterRowExpanded/COllapsed events fire when a row's expanded state changes.
Hello
I'm sorry but I don't understand your reply. There is no command to colapse just 1 row and the collapseall doesn't give me what I'm looking for. Let me restate the problem.
I have band0 that has n rows. Each row in band0 has a child band (band1) containing n rows. When I select a row in band0, I want to close the open band1 (if it exists), and then expand the child band (band1) of the band0 row that I selected.