我正在使用 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 但我无法理解