首页 > 代码库 > kendo AutoComplete实现多筛选条件
kendo AutoComplete实现多筛选条件
kendo autoComplete 原始情况下是不支持多筛选条件的
$("#autocomplete").kendoAutoComplete({ filter: "contains" });根据autocomplete 提供的api可以知道使用filter有三种,分别是
startswith
, endswith
, contains。但是作为中文使用用户,我们该怎么办呢。很多时候,我们希望搜索出来的东西可以通过汉字或者拼音过滤,但是原始的autocomplete是无法帮助我们实现这以功能的。
接下来我们改造下,基于autocomplete做一个多过滤条件的autocomplete
具体代码如下:
kendo.ui.plugin(kendo.ui.ComboBox.extend({ options: { name: "MultiFilterComboBox" }, _filterSource: function () { this.dataSource.filter({ logic: "or", filters: [ { field: "code", operator: "contains", value: this.text() }, { field: "name", operator: "contains", value: this.text() } ] }); } }));
使用方法:
$("#Nation").kendoMultiFilterComboBox({ placeholder: "民族...", dataTextField: "name", dataValueField: "name", filter: "contains", dataSource:[{name:'汉族',code:'hanzu'},<pre name="code" class="javascript" style="color: rgb(85, 85, 85); font-size: 14px; line-height: 21px;">name:'苗族',code:'miaozu'}]});
html标签:
<input id="Nation"/>
现在我们就实现过组合过滤条件的autocomplete,示例只是做了或运算,其他的运算也是可以的,大家可以灵活应用,开发自己的大脑。
kendo AutoComplete实现多筛选条件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。