export query

This commit is contained in:
Jan Prochazka
2020-10-08 15:34:06 +02:00
parent 360a4ef1bc
commit 3819bf9bd7
6 changed files with 69 additions and 15 deletions

View File

@@ -43,8 +43,8 @@ export class ViewGridDisplay extends GridDisplay {
};
}
createSelect() {
const select = this.createSelectBase(this.view, this.view.columns);
createSelect(options = {}) {
const select = this.createSelectBase(this.view, this.view.columns, options);
return select;
}
}