Skip to content

Commit b338012

Browse files
Fixed Bug #4607
When Tree View and Select are both enabled, the Tree View expand button did not work. The Tree View expand button was in a cell header class who's click events are disabled. Enabling the pointer events on the tree-header-row class resolves the issue.
1 parent 7b4cbe5 commit b338012

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/features/tree-view/less/tree-view.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
.ui-grid-tree-header-row {
44
font-weight: bold !important;
55
}
6+
.ui-grid-tree-header-row .ui-grid-row-header-cell.ui-grid-disable-selection.ui-grid-cell {
7+
pointer-events: all;
8+
}

0 commit comments

Comments
 (0)