Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gwt にタブ パネルがあります。ユーザーがマウスだけでタブを選択できるようにしたい。このために、タブパネルのすべてのタブのタブインデックスを無効にしました。私はこのコードで試しました:
DOM.setElementAttribute(cdrMeseTabPanel.getElement(), "tabIndex", "-1" );
しかし、それは機能していません。
アイデアはありますか?
タブインデックスを完全に削除するだけでうまくいきました。
tabIndex を空のプロパティに設定してみてください。
DOM.setElementAttribute(cdrMeseTabPanel.getElement(), "tabIndex", "" );