0

我在 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
4

1 回答 1

0

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

于 2013-02-27T14:48:53.447 回答