vote up 0 vote down star

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?

flag

43% accept rate
Why only by mouse? – cletus Mar 31 at 6:56

1 Answer

vote up 0 vote down

Try setting the tabIndex to an empty property:

DOM.setElementAttribute(cdrMeseTabPanel.getElement(), "tabIndex", "" );
link|flag

Your Answer

Get an OpenID
or

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