Re: Keyboard Accessibility: while tabbing the first element in celltable gets focus

2022-09-09 Thread Thomas Broyer
What kind of Cell is this? Can you show part of the code that sets up the 
table?
Did you set KeyboardSelectionPolicy to DISABLED?

On Friday, September 9, 2022 at 6:09:14 PM UTC+2 nidhi@gmail.com wrote:

> I am working on adding keyboard accessibility to my application. When 
> tabbing from on e widget to another if there is a celltable, it is included 
> in the tabbing sequence. The cell table in not editable, still it gets into 
> tabbing sequence. How do I remove the cell table from tabbing sequence? Is 
> this known issue? Wondering if there are any work arounds? Any help will be 
> appreciated. 

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/975a3ff7-39c5-4229-9f6a-1c9641a5a12dn%40googlegroups.com.


Keyboard Accessibility: while tabbing the first element in celltable gets focus

2022-09-09 Thread nidhizener
I am working on adding keyboard accessibility to my application. When 
tabbing from on e widget to another if there is a celltable, it is included 
in the tabbing sequence. The cell table in not editable, still it gets into 
tabbing sequence. How do I remove the cell table from tabbing sequence? Is 
this known issue? Wondering if there are any work arounds? Any help will be 
appreciated. 

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/b4ada7ac-c305-4fa0-bf07-cba66323f425n%40googlegroups.com.


Re: How to remove tabindex=0 from the cell table html

2022-09-09 Thread Thomas Broyer
What kind of Cell is this? Can you show part of the code that sets up the 
table?
Did you set KeyboardSelectionPolicy to DISABLED?

On Friday, September 9, 2022 at 1:48:45 AM UTC+2 nidhi@gmail.com wrote:

> I am working on adding keyboard accessibility to my product. When I am 
> tabbing from a widget say a button, outside of the cell table to the 
> another button that is after the table my tabbing sequence includes the 
> first element on the celltable into the sequence. This element is just a 
> data and can not be edited. Due to the fact that html generated by GWT for 
> cell table that include tabindex= 0  it is added in the tabbing sequence. 
>  class="com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableEvenRow
>  
> com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableHoveredRow">
>  class="com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableCell 
> com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableEvenRowCell 
> com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableFirstColumn 
> dataGridCell textLeftAlignment wrapText 
> com-jenzabar-jx-ui-widgets-item-grid-JXCellTable-Style-cellTableHoveredRowCell">
>  *tabindex="0*">10/06/2021
>
> My question is how to remove this tabindex. I tried setting tabindex to -1 
> but that does not affect the div tag tabindex value. Any help will be 
> really appreciated. Thank you 
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/6f0aa62b-f9ad-4420-8088-eee90b79a0c8n%40googlegroups.com.


Serialization error due to different folder structure on local and server machine

2022-09-09 Thread Abhishek Yadav
I am getting following error in my server tomcat logs:-

*ERROR: The serialization policy file 
'/nos/js/4937711D6147993DCFE47FF203A0FEDC.gwt.rpc' was not found; did you 
forget to include it in this deployment?*
 
On my local machine the above path is present and tomcat is able to locate 
it and hence I don't get this error. All the folders are present inside nos 
folder.

But on server, all the folders are present inside ROOT and nos folder is 
not present and hence server tomcat is not able to identify this path

I am providing folder structure on my local machine and server below :-



*Windows folder structure   Directory: 
C:\Users\abc\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\nos*

Mode LastWriteTime Length Name
 - -- 
d-06-09-2022  09:07 PMclasses
d-06-09-2022  09:09 PMcom.xyz.nos.Common
d-06-09-2022  09:07 PMgxt
d-06-09-2022  09:10 PMjs
d-06-09-2022  09:07 PMmaven-status
d-07-09-2022  05:04 PMMETA-INF
d-06-09-2022  09:07 PMWEB-INF

*Linux server folder structure*
*Directory*

*[x_qa@webapp-nos-69d5d4865-mzkxz ROOT]$ pwd/opt/tomcat/webapps/ROOT*

[x_qa@webapp-nos-69d5d4865-mzkxz webapps]$ cd ROOT
[x_qa@webapp-nos-69d5d4865-mzkxz ROOT]$ ls -lrt
total 36
drwxr-xr-x 4 root root 4096 Jan  1  1970 nos-10.0.8-SNAPSHOT
drwxr-xr-x 3 root root 4096 Jan  1  1970 maven-status
drwxr-xr-x 7 root root 4096 Jan  1  1970 js
-rw-r--r-- 1 root root  182 Jan  1  1970 index.html
drwxr-xr-x 8 root root 4096 Jan  1  1970 gxt
drwxr-xr-x 2 root root 4096 Jan  1  1970 gwt-unitCache
drwxr-xr-x 3 root root 4096 Jan  1  1970 classes
drwxr-xr-x 1 root root 4096 Jan  1  1970 WEB-INF
drwxr-xr-x 3 root root 4096 Jan  1  1970 META-INF

Can anyone suggest how can I make consistent folder structure between 
server and local machine by keeping both of these folders in sync ?

Let me know if my understand is incorrect ?




 
 

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/586fe648-c729-4691-9f16-b2429e4c765bn%40googlegroups.com.