Twitter Logo Follow us on Twitter
Project Information About this project

RAP 3.1 M7 - New and Noteworthy

Here's a list of the most noteworthy things in the RAP 3.1 M7 milestone build which is available for download since May 06, 2016.

Support for native HTML document overflow behaviour

For better support of RAP applications that look like normal web sites, we added a posibility to enable native HTML document overflow behaviour. To enable it, a new property WebClient.PAGE_OVERFLOW with one of the values "scroll", "scrollX" or "scrollY" must be set to your application.

public class MyApplication implements ApplicationConfiguration {

  @Override
  public void configure( Application application ) {
    Map properties = new HashMap();
    ...
    properties.put( WebClient.PAGE_OVERFLOW, "scrollY" );
    application.addEntryPoint( "/", MyEntryPoint.class, properties );
  }

}

Bugfixes

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

Previous Builds

The above features are just the ones that are new since the last milestone build. Summaries for earlier builds: