Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "2 The Keyboard"

m
m
Line 3: Line 3:
 
==The Keyboard==
 
==The Keyboard==
  
Keyboard handling and related events are currently not available in RWT. However, the client side javascript framework that RWT is using (qooxdoo) provides the entry points to implement keyboard handling and offers keyboard navigation out of the box.  
+
Keyboard handling and related events are currently not available in RWT. However, the client side JavaScript framework that RWT is using (qooxdoo) provides the entry points to implement keyboard handling and offers keyboard navigation out of the box.  
  
 
Try the following keys on the web demo: http://rap.eclipse.org/rwt/
 
Try the following keys on the web demo: http://rap.eclipse.org/rwt/

Revision as of 19:03, 9 January 2007

back to table of content

The Keyboard

Keyboard handling and related events are currently not available in RWT. However, the client side JavaScript framework that RWT is using (qooxdoo) provides the entry points to implement keyboard handling and offers keyboard navigation out of the box.

Try the following keys on the web demo: http://rap.eclipse.org/rwt/

  • Tab
  • Cursor Keys (Tree, Table)
  • Selection with space (multi-selection in table with control key, shift key)

===When a Key Is Typed, Where Does It Go?=== - tbd

===Keyboard Events and the Focus Control=== - planned

  • focus will only occur if a user clicks on a control or uses the keyboard to navigate to the control (it will not necessarily comply with the behavior of the operating system displaying the browser)

===Traversal=== - planned

===Accelerators=== - planned

===Window System Keys=== - not applicable

Back to the top