FimsPagingSupport 수정

main
이범준 2 months ago
parent 0a303e5905
commit 5c9fa822a1

@ -504,11 +504,19 @@ const BOOTSTRAP_COLS = [
**************************************************************************/ **************************************************************************/
class FimsPagingSupport extends PagingSupport { class FimsPagingSupport extends PagingSupport {
constructor(conf) { constructor(conf) {
let constructByCtrl = true;
if(conf.ctrl == null){ if(conf.ctrl == null){
constructByCtrl = false;
conf.ctrl = new DatasetControl({}); conf.ctrl = new DatasetControl({});
} }
super(conf); super(conf);
if(constructByCtrl){
if(conf.ignoreCtrlPrefix){
this.prefix = null;
}
};
if(conf.doq != null){ if(conf.doq != null){
this._doq = conf.doq; this._doq = conf.doq;
} }

Loading…
Cancel
Save