Skip to content

Commit

Permalink
refactor: deprecate GxOptions.GroupSuppressRow.
Browse files Browse the repository at this point in the history
BREAKING CHANGE: deprecate `GxOptions.GroupSuppressRow`. There is no
replacement for this functionality.
  • Loading branch information
hyyan committed Apr 12, 2022
1 parent 75d243a commit 7960b54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GxOptions.bbj
Expand Up @@ -506,6 +506,8 @@ class public GxOptions
rem * If true, the group row won't be displayed and the groups will be expanded by default with no ability to expand / contract the groups. Useful when you want to just 'group' the rows, but not add parent group row to each group
rem * <br><b><small>#Configuration</small></b>
rem * <br><b><small>#GridRenderer</small></b>
rem *
rem * @deprecated since v1.7.0 - There is no replacement for this functionality.
rem */
field public BBjNumber GroupSuppressRow! = null()
rem /**
Expand Down Expand Up @@ -1332,7 +1334,6 @@ class public GxOptions
options!.addProperty("groupDefaultExpanded",#getGroupDefaultExpanded().longValue(), err=*next)
options!. add("autoGroupColumnDef",#getAutoGroupColumnDefinition().getAsJsonObject(), err=*next)
options!.addProperty("groupMultiAutoColumn",#getGroupMultiAutoColumn().booleanValue() , err=*next)
options!.addProperty("groupSuppressRow",#getGroupSuppressRow().booleanValue() , err=*next)
options!.addProperty("groupSelectsChildren",#getGroupSelectsChildren().booleanValue(), err=*next)
options!.addProperty("groupIncludeFooter",#getGroupIncludeFooter().booleanValue(), err=*next)
options!.addProperty("groupIncludeTotalFooter",#getGroupIncludeTotalFooter().booleanValue(), err=*next)
Expand Down

0 comments on commit 7960b54

Please sign in to comment.