0

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

所以,我的问题是:我应该显示一个按钮(并使用 css 样式,因此没有边框等)并且它有点击事件,还是有更好的方法来解决这个简单的问题?

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

谢谢你。

4

1 回答 1

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' });
            });
        }
    }
}
于 2013-07-24T14:28:43.353 回答