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