在使用 xtype 的时候,若没有定义所使用的类名,会出现这样的错误信息,如

var panel = new Ext.Panel({
   ...
   items: [{
      xtype: 'button',
      text: 'OK'
   }]
};

在这里,若button没有定义,就会出现TypeError: namespace is undefined 的错误,很多时候是出现xtype写错的情况,如 button 写成 xutton

posted on 2013-02-18 17:03  敌敌  阅读(575)  评论(0编辑  收藏  举报