Component XTypes

//Explicit creation of contained Components:
var panel = new Ext.Panel({
   ...
   items: [
      new Ext.Button({
         text: 'OK'
      })
   ]
};   //Implicit creation using xtype:
var panel = new Ext.Panel({
   ...
   items: [{
      xtype: 'button',
      text: 'OK'
   }]
posted @ 2009-12-01 23:32  Fan Zhang  阅读(135)  评论(0编辑  收藏  举报