Html Select tabindex not working correctly in Chrome Browser
Posted
by Shauni
on Stack Overflow
See other posts from Stack Overflow
or by Shauni
Published on 2010-06-16T09:45:56Z
Indexed on
2010/06/16
9:52 UTC
Read the original article
Hit count: 271
Hello there, this is a problem I'm currently facing :
I've made a
<select id="nationalityArea.id" tabindex="6" name="nationalityArea.id">
<option value="null"></option>
<option value="619">Îles Cook</option>
<option value="646">Îles Féroé</option>
<option value="625">Îles Salomon</option>
<option value="598">Îles Vierges Américaines</option>
<option value="572">Îles Vierges Britanniques</option>
</select>
Looks fine right ?
The problem is that the tabindex method works perfectly on firefox and internet explorer but not on chrome...
I think the problem came from the
< g:select name="nationalityAreaId" from="${myValue}" tabindex="6" optionKey="id" value="${user?.profile?.nationalityAreaId}" noSelection="['null': '']"/>
But not being a Browser specialist is hurting me on this problem. Has anyone already faced this ? And more importantly, found a solution ?
Thanks
© Stack Overflow or respective owner