Janus GridEX: how to expand rows
I've been using Janus GridEX control in hierarchical mode and I want all rows to be expanded.
As I said before I'm using hierarchy, no groups so expandGroups()
does not work.
A开发者_如何学JAVAny suggestions?
grid.ExpandRecords();
I just had the issue myself.
grid.ExpandRecords()
is the correct method. But it will only work if the grid is visible and actually displayed.
In my case I'm using a TabControl. I had to use the grid.ExpandRecords()
method in the SelectedTabChanged
event
精彩评论