Skip to main content

· One min read

Bug Fixes

  • restore GxColumn.DefaultStringsMask, GxColumn.DefaultNumbersMask, GxColumn.DefaultDatesMask, GxColumn.DefaultTimesMask and GxColumn.DefaultTimestamps for backwards compatibility

  • restore GxColumn.setColumnMask method for backwards compatibility.

· One min read

Bug Fixes

  • !ERROR=32 (BBj Custom Object Stack Overflow) getSuppressWebDebouncing(). (1350a60)
  • GxExecutor does not check if the grid is destroyed before executing code. (9b33eab)

Code Refactoring

  • rename BBjGridExWidget.suppressBuiDebouncing to BBjGridExWidget.suppressWebDebouncing. (0252c22)

Features

  • add BBjGridExWidget:preferAsyncExecution. (ea432eb). When enabled then the executor will try to executes the JavaScript in the BBjHtmlView and returns immediately without waiting for a return value from the client. Enabling this option might boost the performance of the grid. By default this option is turned off

  • add GxColumn::setMask method. (294a513)

BREAKING CHANGES

  • BBjGridExWidget.suppressBuiDebouncing is deprecated. Use BBjGridExWidget.suppressWebDebouncing instead
  • DefaultStringsMask, DefaultNumbersMask, DefaultDatesMask,DefaultTimesMask and DefaultTimestamps are deprecated use Mask instated.
  • setColumnMask is deprecated use setMask instead.

· One min read

Bug Fixes

  • dont show CHART_RANGE context menu item by default (5806120)
  • fix typo - GxFiltersToolpanel::suppressExpandAl should be GxFiltersToolpanel::suppressExpandAll (50e5c79)
  • focus should focus the container if it is empty. (0817b4b)
  • remove GxContextMenuItem::EXCEL_XML_EXPORT (3de3308)
  • js: transiation add array should be reversed to be in sync with ResultSet (64f30d8)

Features

  • add GxColumn SuppressFiltersToolPanel option (0cf67b9)
  • add GxColumnsToolpanel SuppressSyncLayoutWithGrid & SuppressColumnMove and ContractColumnSelection options (9ac3d2b)
  • add GxContextMenuItem COPY_WITH_GROUP_HEADERS (8b639dd)
  • add GxFiltersToolpanel SuppressExpandAll option (8d6bf43)
  • add GxFiltersToolpanel SuppressFilterSearch & SuppressSyncLayoutWithGrid (196341d)
  • show context menu COPY_WITH_GROUP_HEADERS by default (c369079)

BREAKING CHANGES

  • EXCEL_XML_EXPORT has been removed

· 2 min read

BBjGridExWidget v1.7.0 has been released. The following is the changelog list:

Bug Fixes

  • Demo: RowGrouping demo is broken in ag-grid 27 (d8c8988)
  • GxOptions should not set locale text if text is empty (2c62a3b)
  • keyboard navigation is broken in ag-grid v27 (8d54900)
  • replace GxOptions.RowDeselection with GxOptions.SuppressRowDeselection (75d243a)
  • Tooltips fails to render in ag-grid 27 (6704657)

Code Refactoring

  • GxOptions.EnableFloatingFilter won't have an effect anymore. it is deprecated(68caf8f)
  • GxOptions.setImmutableColumns is deprecated (96b9d07)
  • GxState.getString does not contain the sort array anymore (7c35c1d)
  • deprecate GxOptions.GroupSuppressRow. (7960b54)
  • deprecate PinnedRowCellRendere (e43a43a)

Features

  • add GxOptions.ColumnHoverHighlight (40c49a5)
  • add GxOptions.GroupDisplayType (d3f65ca)
  • update LicenseManager to v27 (4090e06)

refactore

  • GxFilterSetFilter.NewRowsAction & GxFilterSetFilter.SuppressRemoveEntries have no affect at all. They are deprecated. (21700b5)
  • GxFilterSetFilter.suppressSyncValuesAfterDataChange is deprecated (9b3eae9)

BREAKING CHANGES

  • GxFilterSetFilter.NewRowsAction & GxFilterSetFilter.SuppressRemoveEntries have no affect at all. They are deprecated with no replacemnets
  • GxFilterSetFilter.suppressSyncValuesAfterDataChange has been been deprecated. This option has no replacement
  • GxOptions.EnableFloatingFilter won't have effect anymore. it is deprecated. You can enable/disable the floating filter per column.
  • Setting the PinnedRowCellRendere won't affect the rendering anymore. Use the CellRenderer instead
  • GxOptions.GroupMultiAutoColumn, GxOptions.GroupUseEntireRow , GxOptions.GroupSuppressAutoColumn are deprecated. Use GxOptions.GroupDisplyType instead
  • deprecate GxOptions.GroupSuppressRow. There is no replacement for this functionality.
  • rowDeselection no longer has any affect as the grid now allows row deselection by default. To block row deselection set suppressRowDeselection to true.
  • GxState.getString does not contain the sort array anymore. The sort state is contained in the columns array now.
  • Grid Option 'immutableColumns' is now gone. Columns are immutable by default.