Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 384368

Summary: Table issue with ARROW key navigation on RAP 1.5
Product: [RT] RAP Reporter: Anuradha G <theanuradha>
Component: JFaceAssignee: Project Inbox <rap-inbox>
Status: RESOLVED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Anuradha G CLA 2012-07-05 10:09:53 EDT
Build Identifier: 1.5

Table issue with ARROW key navigation on RAP 1.5.
you cannot use the up and down arrows until you click on the first record


I used web project type (standalone web app) other than eclipse plugin project.
SO I have create the test project with same setup as it include rwt runtime in lib folder it is too big to attach here so I have upload it to my drop box. please find link dl.dropbox.com/u/33401761/grid-test.zip

when you run web application with tomcat url for app is localhost:8080/test/forms

Reproducible: Always

Steps to Reproduce:
http://www.eclipse.org/forums/index.php/m/893781/#msg_893781
Comment 1 Ivan Furnadjiev CLA 2012-07-06 05:44:16 EDT
In order to use the key navigation you need focus item to be set. There are two ways to select an item:
- Table#select( index ) - select an item without setting the focus item
- Table#setSelection( index ) - select an item and set the focus item
Using Table#setSelection( 0 ) instead of Table#select( 0 ) in your ApplicationLauncher class line 157 solves the problem. I will close it as INVALID.
Comment 2 Anuradha G CLA 2012-07-06 07:42:02 EDT
Ok I got it working on my project a well.