当前位置: 代码迷 >> JavaScript >> Extjs4-Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined
  详细解决方案

Extjs4-Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined

热度:679   发布时间:2012-10-14 14:55:08.0
Extjs4---Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined

今天在做后台管理系统是遇到个问题,我想在grig上面加一个搜索功能,还是按照以前的方法加上去之后报错了:

Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined

找了很多资料才找到了一个解决办法就是修改SearchField.js的源代码

在me.store.remoteFilter = true;的后面加上这么一段代码:

if (Ext.isString(me.store)) {
            me.store = Ext.StoreMgr.lookup(me.store);
        }


就可以解决了

  相关解决方案