summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/Table.java
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-02-19 13:30:53 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-02-19 13:30:53 +0000
commit14a6c825facee63f8fdd3bc92a0689a946d11526 (patch)
tree96ab6cad271aaa28cac000f3ed1b4381d6feb751 /src/com/itmill/toolkit/ui/Table.java
parente8acd30babacd571cfc69e0444edbae0892e3b24 (diff)
downloadvaadin-framework-14a6c825facee63f8fdd3bc92a0689a946d11526.tar.gz
vaadin-framework-14a6c825facee63f8fdd3bc92a0689a946d11526.zip
MAJOR: Changed defaults from pagelen 0 -> 15 and col header mode hidden -> exp.def.if
svn changeset:736/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/ui/Table.java')
-rw-r--r--src/com/itmill/toolkit/ui/Table.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java
index 5e4a3abaac..2374d3af30 100644
--- a/src/com/itmill/toolkit/ui/Table.java
+++ b/src/com/itmill/toolkit/ui/Table.java
@@ -190,7 +190,7 @@ public class Table extends Select implements Action.Container,
private HashMap columnAlignments = new HashMap();
/** Holds value of property pageLength. 0 disables paging. */
- private int pageLength = 0;
+ private int pageLength = 15;
/** Id the first item on the current page. */
private Object currentPageFirstItemId = null;
@@ -205,7 +205,7 @@ public class Table extends Select implements Action.Container,
private boolean selectable = false;
/** Holds value of property columnHeaderMode. */
- private int columnHeaderMode = COLUMN_HEADER_MODE_HIDDEN;
+ private int columnHeaderMode = COLUMN_HEADER_MODE_EXPLICIT_DEFAULTS_ID;
/** True iff the row captions are hidden. */
private boolean rowCaptionsAreHidden = true;