Twitter Logo Follow us on Twitter
Project Information About this project

RAP 3.22 M1 - New and Noteworthy

Here's a list of the most noteworthy things in the RAP 3.22 M1 milestone build which is available for download since July 15, 2022.

Add Possibility to Disable Shutdown Request

In certain circumstances it is required to prevent the execution of sendShutdown/sendBeacon, e.g. when HTTP 302/303 redirects are intercepted and handled manually.

This can be configured within the ApplicationConfiguration by setting an additional string property:

Map properties = new HashMap();
properties.put( WebClient.DISABLE_SHUTDOWN_REQUEST, "true" );
application.addEntryPoint( "/", Demo.class, properties );
    

Support for MenuItem Tooltip Text

New API has been added to support adding tooltip text to MenuItem. If tooltip with HTML markup is used, RWT.TOOLTIP_MARKUP_ENABLED must be set as data on the item as usual.

  • org.eclipse.swt.widgets.MenuItem.setToolTipText(String)
  • org.eclipse.swt.widgets.MenuItem.getToolTipText()

Mouse Wheel Scroll Direction

With the new count property it is now possible to determine the mouse wheel scroll direction by its sign. It is set for MouseDown, MouseUp, MouseDoubleClick, and MouseWheel client scripting events.

Issues fixed