Предварительный запрос с фильтром не работает в IE6 extjs

Я столкнулся с проблемой с IE6 при использовании фильтра с функцией beforequery в extjs 3.4, вот мой код.

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. Я получаю запрос как /^[undefined]/ в IE6.

2. Но в Chrome и запросе FF = /^[a-zA-Z0-9-.,:+*()='&_]/

Любая помощь высоко ценится.

Заранее спасибо,

Радж

1 ответ

Решение
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 массив не работает.

Другие вопросы по тегам