This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 108666 - A11Y: Some components can be unreachable in "Test Web Service Method" dialog
Summary: A11Y: Some components can be unreachable in "Test Web Service Method" dialog
Status: VERIFIED FIXED
Alias: None
Product: obsolete
Classification: Unclassified
Component: visualweb (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P1 blocker (vote)
Assignee: Quy Nguyen
URL:
Keywords: A11Y
Depends on:
Blocks:
 
Reported: 2007-07-02 16:36 UTC by Roman Mostyka
Modified: 2007-07-04 14:20 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Mostyka 2007-07-02 16:36:27 UTC
1. Call "Test Web Service Method" dialog. Focus is on "Submit" button.
2. Press tab to get text field for entering necessary value.
3. Try to get "Submit" button with tab.

Result: Tab switch focus among text fields concerning entering values and "Submit" button is unreachable.
Comment 1 Quy Nguyen 2007-07-04 01:44:33 UTC
The tab cycling now works as expected when there are no parameters.

Checking in src/org/netbeans/modules/visualweb/websvcmgr/ui/TestWebServiceMethodDlg.java;
/cvs/visualweb/websvcmgr/src/org/netbeans/modules/visualweb/websvcmgr/ui/TestWebServiceMethodDlg.java,v  <-- 
TestWebServiceMethodDlg.java
new revision: 1.3; previous revision: 1.2
done


However, the tab cycling within the table fields works as expected.  To escape from the table, Ctrl-Tab needs to be
used.  This is documented in:
http://java.sun.com/docs/books/tutorial/uiswing/misc/focus.html

"Tabbing moves the focus through the buttons into the text area. Additional tabbing moves the cursor within the text
area but not out of the text area because, inside a text area, Tab is not a focus traversal key. However, Control-Tab
moves the focus out of the text area and into the first text field. Likewise, Control-Shift-Tab moves the focus out of
the text area and into the previous component. The Control key is used by convention to move the focus out any component
that treats Tab specially, such as JTable."
Comment 2 Roman Mostyka 2007-07-04 14:20:23 UTC
Verified with fresh build from trunk sources.