Hi,
An working on ARIA compatibility for our application. Actually our is bit big architecture running on GWT view/presenter framework.
In our application we have separated Right panel selection updates, left as navigation panel, bottom panel contains Next button and in middle view area.
We are calling below method from our framework entry point to enable aria screen reader for gwt components before loading any gwt components.
public static native void readScreen() /*-{
$wnd.isc.screenReader = true;
}-*/;
when click on next button only view area will replace with next screen widgets, while doing that we have written a event to update the respective page header. but JAWS screen reader is not considering this as fresh page and not reading header title which is changed and below is the list it not reading.
1. has loaded along with the number of headings, number of links
and number of frames on the page.
2. Hit Enter on the "Next Button" without entering any of the
required fields with the help of JAWS.
Expected Result: JAWS should be able to read the error
message displayed. where we have a common area for every
page to display errors.
we have total 8 screen's do display on click on next button. Can you please provide me the solution for my problems ?
I will try to put some code snippet later.
GWT-2.6.1
SmartGWT-4.0
FireFox-24.0
Running in debug mode with eclipse Helios
An working on ARIA compatibility for our application. Actually our is bit big architecture running on GWT view/presenter framework.
In our application we have separated Right panel selection updates, left as navigation panel, bottom panel contains Next button and in middle view area.
We are calling below method from our framework entry point to enable aria screen reader for gwt components before loading any gwt components.
public static native void readScreen() /*-{
$wnd.isc.screenReader = true;
}-*/;
when click on next button only view area will replace with next screen widgets, while doing that we have written a event to update the respective page header. but JAWS screen reader is not considering this as fresh page and not reading header title which is changed and below is the list it not reading.
1. has loaded along with the number of headings, number of links
and number of frames on the page.
2. Hit Enter on the "Next Button" without entering any of the
required fields with the help of JAWS.
Expected Result: JAWS should be able to read the error
message displayed. where we have a common area for every
page to display errors.
we have total 8 screen's do display on click on next button. Can you please provide me the solution for my problems ?
I will try to put some code snippet later.
GWT-2.6.1
SmartGWT-4.0
FireFox-24.0
Running in debug mode with eclipse Helios