Skip to content

Commit

Permalink
feat: ✨ add SuppressHorizontalScroll option
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan committed Jul 9, 2020
1 parent 0e1b99a commit 409baf6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions GxOptions.bbj
Expand Up @@ -611,6 +611,12 @@ class public GxOptions
rem */
field public BBjNumber AlwaysShowVerticalScroll! = null()
rem /**
rem * Set to true to never show the horizontal scroll.
rem * <br><b><small>#Configuration</small></b>
rem * <br><b><small>#GridRenderer</small></b>
rem */
field public BBjNumber SuppressHorizontalScroll! = null()
rem /**
rem * When true, the grid will not scroll to the top when new row data is provided&#183;
rem * Use this if you don't want the default behaviour of scrolling to the top every time you load new data&#183;
rem * <br><b><small>#Configuration</small></b>
Expand Down Expand Up @@ -1279,6 +1285,7 @@ class public GxOptions
rem Scrolling Options
rem ===========================
options!.addProperty("alwaysShowVerticalScroll",#getAlwaysShowVerticalScroll().booleanValue(), err=*next)
options!.addProperty("suppressHorizontalScroll",#getSuppressHorizontalScroll().booleanValue(), err=*next)
options!.addProperty("suppressScrollOnNewData",#getSuppressScrollOnNewData().booleanValue(), err=*next)
options!.addProperty("suppressAnimationFrame",#getSuppressAnimationFrame().booleanValue(), err=*next)
options!.addProperty("suppressColumnVirtualisation",#getSuppressColumnVirtualisation().booleanValue(), err=*next)
Expand Down

0 comments on commit 409baf6

Please sign in to comment.