From: Artur Signell Date: Tue, 19 Mar 2013 18:27:22 +0000 (+0200) Subject: Disabled TabIndex warning for now (#11325) X-Git-Tag: 7.0.3^0 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=17f64543bcc74f74017a3d1c13e5db83c7a4ec41;p=vaadin-framework.git Disabled TabIndex warning for now (#11325) Change-Id: I89311c7e4bdab3a70aa335c203ef57badab7bec8 --- diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index 74cb85c297..ecd6abae08 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -142,9 +142,13 @@ public abstract class AbstractComponentConnector extends AbstractConnector ((Focusable) getWidget()) .setTabIndex(((TabIndexState) getState()).tabIndex); } else { - VConsole.error("Tab index received for " - + Util.getSimpleName(getWidget()) - + " which does not implement Focusable"); + /* + * TODO Enable this error when all widgets have been fixed to + * properly support tabIndex, i.e. implement Focusable + */ + // VConsole.error("Tab index received for " + // + Util.getSimpleName(getWidget()) + // + " which does not implement Focusable"); } } Profiler.leave("AbstractComponentConnector.onStateChanged update tab index");