1

我为我的项目使用了以下教程。我需要添加一个按钮,当用户单击该按钮时。我需要它导航到另一个 vire,但它应该被添加到导航堆栈中(因此默认情况下它会有一个后退按钮)。

简而言之,我需要修改本教程的代码,使其成为基于导航的应用程序。

4

1 回答 1

1

所有你需要的是Ext.navigation.View

从上面的链接尝试这个简单的代码..

var view = Ext.create('Ext.NavigationView', {
    fullscreen: true,

    items: [{
        title: 'First',
        items: [{
            xtype: 'button',
            text: 'Push a new view!',
            handler: function() {
                //use the push() method to push another view. It works much like
                //add() or setActiveItem(). it accepts a view instance, or you can give it
                //a view config.
                view.push({
                    title: 'Second',
                    html: 'Second view!'
                });
            }
        }]
    }]
});
于 2012-05-07T16:21:15.187 回答