Skip to content

Commit

Permalink
feat: add GxFiltersToolpanel SuppressFilterSearch & `SuppressSyncLa…
Browse files Browse the repository at this point in the history
…youtWithGrid`
  • Loading branch information
hyyan committed Jul 15, 2022
1 parent 233a182 commit 196341d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions GxSidebar.bbj
Expand Up @@ -195,6 +195,14 @@ rem *
rem * @author Hyyan Abo Fakher
rem */
class public GxFiltersToolpanel extends GxToolpanel
rem /**
rem * To suppress the Filter Search
rem */
field public BBjNumber SuppressFilterSearch! = null()
rem /**
rem * Suppress updating the layout of columns as they are rearranged in the grid
rem */
field public BBjNumber SuppressSyncLayoutWithGrid! = null()
rem /**
rem * {@inheritDoc}
rem */
Expand Down Expand Up @@ -240,6 +248,10 @@ class public GxFiltersToolpanel extends GxToolpanel

json! = #super!.getAsJsonObject()
json!.addProperty("toolPanel",#getId())
params! = new JsonObject()
params!.addProperty("suppressFilterSearch",#SuppressFilterSearch!.booleanValue(), err=*next)
params!.addProperty("suppressSyncLayoutWithGrid",#SuppressSyncLayoutWithGrid!.booleanValue(), err=*next)
json!.add("toolPanelParams",params!)
methodret json!
methodend

Expand Down

0 comments on commit 196341d

Please sign in to comment.