Sorry, my bad. HasKeyboardPagingPolicy is an interface implemented by CellTable<T> in 2.3 (in 2.4 or in trunk, the inheritance chain in slightly different but still working in the same manner) that defines a
*setKeyboardPagingPolicy<http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/cellview/client/HasKeyboardPagingPolicy.html#setKeyboardPagingPolicy%28com.google.gwt.user.cellview.client.HasKeyboardPagingPolicy.KeyboardPagingPolicy%29> *(HasKeyboardPagingPolicy.KeyboardPagingPolicy<http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/cellview/client/HasKeyboardPagingPolicy.KeyboardPagingPolicy.html> policy) with its getter counterpart. So, given a celltable (or datagrid) you just need to set something like table.setKeyboardPagingPolicy(HasKeyboardPagingPolicy.INCREASE_RANGE) That's it. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/K2mm2VH7_IIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
