| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * DevExtreme (ui/list/ui.list.edit.search.js)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- "use strict";
- var ListEdit = require("./ui.list.edit");
- var searchBoxMixin = require("../widget/ui.search_box_mixin");
- var ListSearch = ListEdit.inherit(searchBoxMixin).inherit({
- _addWidgetPrefix: function(className) {
- return "dx-list-" + className
- },
- _getCombinedFilter: function() {
- var filter;
- var storeLoadOptions;
- var dataSource = this._dataSource;
- if (dataSource) {
- storeLoadOptions = {
- filter: dataSource.filter()
- };
- dataSource._addSearchFilter(storeLoadOptions);
- filter = storeLoadOptions.filter
- }
- return filter
- },
- _initDataSource: function() {
- var value = this.option("searchValue");
- var expr = this.option("searchExpr");
- var mode = this.option("searchMode");
- this.callBase();
- if (this._dataSource) {
- value && value.length && this._dataSource.searchValue(value);
- mode.length && this._dataSource.searchOperation(searchBoxMixin.getOperationBySearchMode(mode));
- expr && this._dataSource.searchExpr(expr)
- }
- }
- });
- module.exports = ListSearch;
|