博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
easyui的combobox/combogrid检索
阅读量:5075 次
发布时间:2019-06-12

本文共 469 字,大约阅读时间需要 1 分钟。

combobox默认的是从第一个字开始检索,输入关键字检索不到  所以要修改默认配置才可以关键字检索

只要在js文件中加入这段 重写默认过滤器

这是combobox

$.fn.combobox.defaults.filter = function(q, row){ var opts = $(this).combobox('options'); return row[opts.textField].indexOf(q) >= 0; };

这是combogrid 

$.fn.combogrid.defaults.filter = function(q, row){      var opts = $(this).combogrid('options');      return row[opts.textField].indexOf(q) >= 0;  };

  

不管是combobox 还是combogrid 只要重写指定标签类的过滤器

 

转载于:https://www.cnblogs.com/m97i/p/8073208.html

你可能感兴趣的文章