diff --git a/GxOptions.bbj b/GxOptions.bbj index f2428870..512a7695 100644 --- a/GxOptions.bbj +++ b/GxOptions.bbj @@ -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 *
#Configuration + rem *
#GridRenderer + rem */ + field public BBjNumber SuppressHorizontalScroll! = null() + rem /** rem * When true, the grid will not scroll to the top when new row data is provided· rem * Use this if you don't want the default behaviour of scrolling to the top every time you load new data· rem *
#Configuration @@ -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)