Skip to content

Commit 5b023ac

Browse files
authored
Cleaned up deprecated agOption suppressMakeColumnVisibleAfterUnGroup (#780)
Changed to suppressGroupChangesColumnVisibility: "suppressShowOnUngroup".
1 parent f92fc64 commit 5b023ac

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

client-app/src/examples/todo/TodoPanel.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ export const todoPanel = hoistCmp.factory({
1818
ref: model.panelRef,
1919
mask: 'onLoad',
2020
tbar: tbar(),
21-
items: [grid({agOptions: {suppressMakeColumnVisibleAfterUnGroup: true}}), taskDialog()],
21+
items: [
22+
grid({
23+
agOptions: {
24+
suppressGroupChangesColumnVisibility: 'suppressShowOnUngroup'
25+
}
26+
}),
27+
taskDialog()
28+
],
2229
bbar: bbar()
2330
});
2431
}

0 commit comments

Comments
 (0)