How can I collapse automatically specific rows of IgxTreeGrid? #10711
-
QuestionI found that For example, I would like to collapse the level 0 row only when
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Another way to paraphrase this question would be "How can I collapse specific rows by code?" |
Beta Was this translation helpful? Give feedback.
-
Get the row from the grid end set it state. const row = this.grid.getRowByKey(<PK>);
row.collapsed = false; Additional information here |
Beta Was this translation helpful? Give feedback.
Get the row from the grid end set it state.
Additional information here