]> source.dussan.org Git - vaadin-framework.git/commitdiff
opened client side table so that developers have a changes to build custom table...
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 8 Sep 2009 09:41:59 +0000 (09:41 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 8 Sep 2009 09:41:59 +0000 (09:41 +0000)
svn changeset:8702/svn branch:6.1

src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

index 6f66aed047d8fbd44666ad9ffa8da713c2a86472..e35d8993a47b97742485107df80831a4d61a9817 100644 (file)
@@ -751,7 +751,13 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler {
         }
     }
 
-    private boolean willHaveScrollbars() {
+    /**
+     * Note, this method is not official api although declared as protected.
+     * Extend at you own risk.
+     * 
+     * @return true if content area will have scrollbars visible.
+     */
+    protected boolean willHaveScrollbars() {
         if (!(height != null && !height.equals(""))) {
             if (pageLength < totalRows) {
                 return true;