Sencha Architect を使い始めたばかりですが、最も単純なことでさえ問題があります。ボタンをクリックすると、次のビューに移動しようとしています。これまでのコードは、ボタンがクリックされるとアラートを出します。
Ext.define('MyApp.view.Login', {
    extend: 'Ext.Container',
    config: {
        layout: {
            align: 'center',
            type: 'vbox'
        },
        items: [
            {
                xtype: 'fieldset',
                width: 500,
                title: 'Login',
                items: [
                    {
                        xtype: 'selectfield',
                        label: 'Vælg bil',
                        store: 'cars'
                    },
                    {
                        xtype: 'passwordfield',
                        label: 'Adgangskode'
                    },
                    {
                        xtype: 'checkboxfield',
                        label: 'Husk mig'
                    },
                    {
                        xtype: 'button',
                        handler: function(button, event) {
                            alert("foo");
                        },
                        text: 'Log ind'
                    }
                ]
            }
        ]
    }
});
新しいビューを追加するには、アラートの代わりに何が必要ですか?