From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Wed, 4 Dec 2013 20:34:50 +0000 (+0100)
Subject: reversing previous commit that only eemed to work
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5c4d20a3863a84f437a3045bc48e11b0e911a241;p=unfold.git

reversing previous commit that only eemed to work
actually all the columns were showing up, but only the top rows were visible
---

diff --git a/plugins/querytable/static/js/querytable.js b/plugins/querytable/static/js/querytable.js
index a217657e..7686e194 100644
--- a/plugins/querytable/static/js/querytable.js
+++ b/plugins/querytable/static/js/querytable.js
@@ -85,7 +85,6 @@
 	    this.slick_options = {
 		enableCellNavigation: false,
 		enableColumnReorder: true,
-		explicitInitialization: true,		
 	    };
 
 	    this.slick_data=[];
@@ -338,7 +337,7 @@
 	    if (debug) messages.debug("1-shot initializing dataTables content with " + this.slick_data.length + " lines");
 	    var start=new Date();
 	    this.slick_grid.setData (this.slick_data, true);
-	    this.slick_grid.init();
+	    this.slick_grid.render();
 	    var duration=new Date()-start;
 	    if (debug) messages.debug("setData+render took " + duration + " ms");
 	    if (debug_deep) {