Web应用程序sencha触摸错误

时间:2013-02-25 17:31:43

标签: javascript sencha-touch sencha-touch-2

我在Sencha Touch的这部分JavaScript代码中遇到了一些问题,我不知道如何解决它。

new Ext.application({
  name: 'TouchStart',
  launch: function() {    
    this.viewport = new Ext.Panel({
      fullscreen: true,
      bodyPadding: 5,
      dockedItems: [            {
        dock : 'top',
        xtype: 'toolbar',
        title: 'Touch Start'
      }, {
        dock : 'top',
        xtype: 'toolbar',
        items: [{
            text: 'Hello Button'
        }]
      }],    
      html: 'Hello Panel'
    });
  }
});

控制台显示:

This.viewport = new Ext.Panel({
> Uncaught TypeError: undefined is not a function

1 个答案:

答案 0 :(得分:0)

萨拉姆 您必须将代码Ext.Panel更改为  Ext.create('Ext.Panel',...........