Sencha Touch 2:如何建立到另一个视图的链接?

时间:2013-07-24 14:24:47

标签: javascript events sencha-touch-2 tap xtype

我在容器中有一个文本(请参阅下面的代码)。当用户点击该文本时,应显示另一个视图。 我再次检查了Sencha文档,我发现Ext.Container没有tap事件。

所以,我的问题是:我应该显示一个按钮(并且处理css样式以便没有边框等)并且它有tap事件,或者有更好的方法来解决这个简单的问题?

 {
    xtype: 'container',
    cls: 'myClass',
    html: 'go to another view'
 },

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以在初始化时向元素添加tap侦听器:

{
    xtype: 'container',
    cls: 'myClass',
    html: 'go to another view',
    listeners: {
        initialize: function(ct) {
            ct.element.on('tap', function() {
                Ext.Viewport.add({ xtype: 'other-panel' });
            });
        }
    }
}