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 2017/08/03 15:44:32 UTC

[7/9] isis git commit: ISIS-1690: backing out and then reinstating the errant code

ISIS-1690: backing out and then reinstating the errant code


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

Branch: refs/heads/master
Commit: 93045fb779bf4de5a9bc0c1d1aeb27fcc8f9c188
Parents: 76c92a4
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Thu Aug 3 16:08:02 2017 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Thu Aug 3 16:31:09 2017 +0100

----------------------------------------------------------------------
 .../ajaxtable/IsisAjaxFallbackDataTable.java            | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/93045fb7/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxFallbackDataTable.java
----------------------------------------------------------------------
diff --git a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxFallbackDataTable.java b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxFallbackDataTable.java
index 3841ec8..39de90f 100644
--- a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxFallbackDataTable.java
+++ b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/ajaxtable/IsisAjaxFallbackDataTable.java
@@ -85,7 +85,17 @@ public class IsisAjaxFallbackDataTable<T, S> extends DataTable<T, S> {
 
         addBottomToolbar(new NoRecordsToolbar(this));
     }
-    
+
+    @Override
+    protected void onConfigure() {
+        super.onConfigure();
+    }
+
+    @Override
+    protected void onBeforeRender() {
+        super.onBeforeRender();
+    }
+
     @Override
     protected Item<T> newRowItem(final String id, final int index, final IModel<T> model)
     {