You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/10/19 13:40:47 UTC

[70/78] [abbrv] git commit: ISIS-537 Make the paging navigation smaller

ISIS-537 Make the paging navigation smaller

https://trello.com/c/nlfT7NZy/61-improve-the-styling-of-the-table-paging-navigation


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/8c535e46
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/8c535e46
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/8c535e46

Branch: refs/heads/master
Commit: 8c535e462dc419500dbda718448f5e1cd6807ede
Parents: 5c63b23
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sat Oct 18 16:13:12 2014 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sat Oct 18 16:13:12 2014 +0300

----------------------------------------------------------------------
 .../ajaxtable/IsisAjaxPagingNavigator.java                   | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/8c535e46/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxPagingNavigator.java
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxPagingNavigator.java b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxPagingNavigator.java
index 019861f..f9ede18 100644
--- a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxPagingNavigator.java
+++ b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxPagingNavigator.java
@@ -29,12 +29,14 @@ public class IsisAjaxPagingNavigator extends BootstrapAjaxPagingNavigator {
 
     private static final long serialVersionUID = 1L;
 
+    public IsisAjaxPagingNavigator(String id, IPageable pageable) {
+        this(id, pageable, null);
+    }
+
     public IsisAjaxPagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
         super(id, pageable, labelProvider);
-    }
 
-    public IsisAjaxPagingNavigator(String id, IPageable pageable) {
-        super(id, pageable);
+        setSize(Size.Small);
     }
 
     @Override