summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-03-19 20:27:22 +0200
committerArtur Signell <artur@vaadin.com>2013-03-19 20:27:37 +0200
commit17f64543bcc74f74017a3d1c13e5db83c7a4ec41 (patch)
tree1d885710b60046b36f7e14756b3a9f4cc59c6c3e
parentd816697f2d87c6c3a8ae68003d0d2e3c142b3c5f (diff)
downloadvaadin-framework-7.0.3.tar.gz
vaadin-framework-7.0.3.zip
Disabled TabIndex warning for now (#11325)7.0.3
Change-Id: I89311c7e4bdab3a70aa335c203ef57badab7bec8
-rw-r--r--client/src/com/vaadin/client/ui/AbstractComponentConnector.java10
1 files changed, 7 insertions, 3 deletions
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");