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; }