I have a tab panel in the gwt. I want allow the user to select the tab only by mouse. For this one I have disable the tabindex for all the tab in my tabpanle. I tried with this code:

DOM.setElementAttribute(cdrMeseTabPanel.getElement(), "tabIndex", "-1" );

but it is not working.

Any ideas please?

link|improve this question

47% accept rate
Why only by mouse? – cletus Mar 31 '09 at 6:56
feedback

2 Answers

up vote 0 down vote accepted

Try setting the tabIndex to an empty property:

DOM.setElementAttribute(cdrMeseTabPanel.getElement(), "tabIndex", "" );
link|improve this answer
feedback

Just remove the tab index complemetely it worked for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.