1

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.

Any suggestions?

Benjol
  • 63,995
  • 54
  • 186
  • 268
Arthur Rizzo
  • 1,337
  • 15
  • 30

2 Answers2

2

grid.ExpandRecords();

Madeleine
  • 2,152
  • 2
  • 24
  • 35
0

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

citronas
  • 19,035
  • 27
  • 96
  • 164