From 5c9fa822a1a8e7beb9cfba2408e06a5277643191 Mon Sep 17 00:00:00 2001 From: leebj Date: Thu, 12 Sep 2024 13:26:20 +0900 Subject: [PATCH] =?UTF-8?q?FimsPagingSupport=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/js/fims/cmmn/fims-support.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/resources/js/fims/cmmn/fims-support.js b/src/main/webapp/resources/js/fims/cmmn/fims-support.js index 1095410b..56c29e71 100644 --- a/src/main/webapp/resources/js/fims/cmmn/fims-support.js +++ b/src/main/webapp/resources/js/fims/cmmn/fims-support.js @@ -504,11 +504,19 @@ const BOOTSTRAP_COLS = [ **************************************************************************/ class FimsPagingSupport extends PagingSupport { constructor(conf) { + let constructByCtrl = true; if(conf.ctrl == null){ + constructByCtrl = false; conf.ctrl = new DatasetControl({}); } super(conf); - + + if(constructByCtrl){ + if(conf.ignoreCtrlPrefix){ + this.prefix = null; + } + }; + if(conf.doq != null){ this._doq = conf.doq; }