在extjs 3.4中使用带有beforequery函数的过滤器时,我遇到IE6的问题,这是我的代码。
this.findById('field1').addListener({
beforequery: function(e) {
var metadataStep = Ext.getCmp('step2');
if (e.query && e.query.indexOf('?') != -1) {
var temp = '';
for(var i=0;i<e.query.length;i++){
temp = temp + '['+e.query[i]+ ']';
}
e.cancel = true;
var query = new RegExp(String.format('^{0}',temp.replace(/\?/g, 'a-zA-Z0-9\-\.,:\+\*\(\)=\'&_')));
if (combo.store.getCount() > 0 || combo.listEmptyText) {
combo.expand();
combo.restrictHeight();
}
this.store.clearFilter(true);
this.store.filter(this.displayField, query);
}
}
});
注意:它在ff和Chrome中工作
1.我在IE6中收到查询/ ^ [undefined] /。
2.但在Chrome和FF查询中= / ^ [a-zA-Z0-9 - 。,:+ *()='&amp; _] /
非常感谢任何帮助。
提前致谢,
拉吉
答案 0 :(得分:0)
if (e.query && e.query.indexOf('?') != -1) {
e.query = String.format('^{0}', e.query.replace(/\+/g, '[\+]'));
e.query = String.format('^{0}', e.query.replace(/\(/g, '[\\(]'));
e.query = String.format('^{0}', e.query.replace(/\)/g, '[\\)]'));
e.query = String.format('^{0}', e.query.replace(/\*/g, '[\*]'));
e.query = String.format('^{0}', e.query.replace(/\./g, '[.]'));
e.cancel = true;
var query = new RegExp(String.format('^{0}',e.query.replace(/\?/g, '[a-zA-Z0-9\-\.,:\+\*\(\)=\'&_]')));
if (combo.store.getCount() > 0 || combo.listEmptyText) {
combo.expand();
combo.restrictHeight();
}
combo.store.clearFilter(true);
combo.store.filter(combo.displayField, query);
}
此代码工作正常。在IE6阵列中无效。