as the ability to set dropdown value through the FooTable options
is not used in the project.
self.removeFilter("action");
}
self.filter();
- },
- draw: function () {
- this._super();
- var action = this.find("action");
- if (action instanceof FooTable.Filter) {
- if (action.query.val() === "reject -soft") {
- this.$action.val("reject");
- } else {
- this.$action.val(action.query.val());
- }
- } else {
- this.$action.val(this.def);
- }
}
});
/* eslint-enable consistent-this, no-underscore-dangle, one-var-declaration-per-line */