Hello,
While debugging the tabbing in our application I found that when tabbing trough all fields the focus can end up on the underlying html (nody) content, the initial focus (when the page is displayed for the 1st time) also seems to be on the underlying html content.
The flow is quite consistent, it always goes like this (starting from the point after the page is loaded):
HTML - FIELD 1 - FIELD 2 - ... - FIELD N - HTML - FIELD 1 - ....
I inspect the current item having focus by executing this command in the console:
isc.Class.getActiveElement()
This behavior is noticed in at least FF, IE & Chrome (which leads me to conclude it isn't a browser quirck).
I can't see why that underlying HTML should get the focus, it serves no purpose as far as I can tell. I tried putting tabindex="-1" on several of the HTML elements and javascript tags but no success.
Any thoughts on how I can get by this would be great!
While debugging the tabbing in our application I found that when tabbing trough all fields the focus can end up on the underlying html (nody) content, the initial focus (when the page is displayed for the 1st time) also seems to be on the underlying html content.
The flow is quite consistent, it always goes like this (starting from the point after the page is loaded):
HTML - FIELD 1 - FIELD 2 - ... - FIELD N - HTML - FIELD 1 - ....
I inspect the current item having focus by executing this command in the console:
isc.Class.getActiveElement()
This behavior is noticed in at least FF, IE & Chrome (which leads me to conclude it isn't a browser quirck).
I can't see why that underlying HTML should get the focus, it serves no purpose as far as I can tell. I tried putting tabindex="-1" on several of the HTML elements and javascript tags but no success.
Any thoughts on how I can get by this would be great!
Comment