Twitter Logo Follow us on Twitter
Project Information About this project

RAP 3.13 - New and Noteworthy

Here's a list of the most noteworthy things in the RAP 3.13 release which is available for download since June 17, 2020.

Support for Nebula Grid cell selection

In this release we added the posibility to select one or more cells in Nebula Grid.

Grid cell selection

Grid cell selection

The selection can be made with keyboard, mouse or programmatically with the following API:

  • setCellSelectionEnabled(boolean)
  • getCellSelectionEnabled()
  • selectCell(Point)
  • selectCells(Point[])
  • selectAllCells()
  • deselectCell(Point)
  • deselectCells(Point[])
  • deselectAllCells()
  • getCellSelectionCount()
  • setCellSelection(Point)
  • setCellSelection(Point[])
  • getCellSelection()
  • setFocusColumn(GridColumn)
  • getFocusColumn()
  • getFocusCell()
  • isCellSelected(Point)
  • selectColumn(int)
  • selectColumnGroup(int)
  • selectColumnGroup(GridColumnGroup)
  • getCell(Point)

Support for Nebula Grid fixed columns

Fixed columns are the left most columns, excluded from horizontal scrolling. You can activate this feature in a similar way as in the Tree/Table widgets:


Grid grid = new Grid( parent, SWT.NONE );
gtid.setData( RWT.FIXED_COLUMNS, Integer.valueOf( 2 ) );

Add possiblity to set the "tree" column

The following GridColumn method has been implemented: seTree(boolean)

Bugfixes

This list shows all bugs that have been fixed for this release.