]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixes AbstractField not updating tab index on client side after calling setTabIndex().
authorJohn Alhroos <john.ahlroos@itmill.com>
Wed, 25 Aug 2010 11:47:12 +0000 (11:47 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Wed, 25 Aug 2010 11:47:12 +0000 (11:47 +0000)
svn changeset:14595/svn branch:6.4

src/com/vaadin/ui/AbstractField.java

index 28b3323bdc2b5043dde92d00efb2486fc405893f..fb3065df990cb399c6f2f4f49f845c27b4d86081 100644 (file)
@@ -1055,6 +1055,7 @@ public abstract class AbstractField extends AbstractComponent implements Field,
      */
     public void setTabIndex(int tabIndex) {
         this.tabIndex = tabIndex;
+        requestRepaint();
     }
 
     /**