Arthur Rizzo
Arthur Rizzo

Reputation: 1357

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.

Any suggestions?

Upvotes: 1

Views: 3300

Answers (2)

citronas
citronas

Reputation: 19375

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

Upvotes: 0

Madeleine
Madeleine

Reputation: 2182

grid.ExpandRecords();

Upvotes: 2

Related Questions