0

我正在使用 sencha touch 开发移动网站。

Ext.setup( {
    onReady: function() {

      new Ext.Carousel({
        fullscreen: true,
        items: [
          {
            html: "Item1"
},
{ 
  html : "Item2"
}
]});};});

是我用的。但是是否可以覆盖 next() 和 prev() 函数。实际上我想在这些函数中做一些事情,然后调用 parent.next() 我的意思是相同的函数。有什么帮助吗??我看到了链接http://www.sencha.com/forum/showthread.php?110036-Override-Method 但我无法理解

4

1 回答 1

1

请参阅此代码以满足您的要求。

Ext.Loader.setConfig({
    enabled: true
});

Ext.application({
    launch: function () {
        Ext.define('MyApp.view.inbox.MyInbox', {
            extend: 'Ext.Carousel',
            config: {
                itemId:'test',
                fullscreen: true,
                items: [{
                    html: "Item1"
                },{ 
                    html : "Item2"
                }]
            },
            next:function(){
                //Do your thing

                //This code will call the next in the super class
                this.callParent(arguments);
            },
            prev:function(){
                //Do your thing

                //This code will call the prev in the super class
                this.callParent(arguments);
            }
        });
        Ext.create('MyApp.view.inbox.MyInbox');
    }
});
于 2013-05-27T09:47:18.057 回答