From 68aa0de2d178dd8083c88906149f964c0caf7b80 Mon Sep 17 00:00:00 2001 From: Arne Morken <arne.morken@gmail.com> Date: Sun, 14 Apr 2024 12:50:52 +0200 Subject: [PATCH] Do not empty new view after all (pagination did not work). --- view/anyView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/anyView.js b/view/anyView.js index 3e55c78..0e9a832 100644 --- a/view/anyView.js +++ b/view/anyView.js @@ -608,7 +608,7 @@ $.any.anyView.prototype.refresh = function (params) par_mode: par_mode, }); if (view) { - view.empty(); + //view.empty(); // TODO! Commented out to make pagination work properly this.views[id_str] = view; new_view = true; }