1

我需要能够点击/单击页面底部的整个工具栏,然后转到另一个屏幕或弹出一个窗口。

你为什么问?因为我现在有一个徽标作为我的标题。另外,这是最简单的方法,我可以用最少的代码在底部获得一个徽标,它是停靠的,并且不会随着页面的变化而改变。本质上,我的工具栏是“关于”页面的链接或弹出窗口。

这是我所拥有的似乎与按钮一起使用的东西。

{
  xtype : 'toolbar',
  docked: 'bottom',
  title: '<img src="logo.png" id="logo" alt=""/>',
  handler: function() {
    Ext.Msg.alert('About', 'You clicked about');
  }
}

我也试过这个,但没有运气。

{
  xtype : 'toolbar',
  docked: 'bottom',
  title: '<img src="logo.png"/>',
  listeners: {
    tap: function() {
      alert("You tapped me");
    }
  }
}

谢谢,唐尼

4

1 回答 1

3

你可以简单地这样做:

{
    xtype : 'toolbar',
    docked: 'bottom',
    title: '<img src="logo.png"/>',
    listeners: {
        initialize: function() {
            this.element.on({
                tap: function() {
                    alert("You tapped me");
                }
            })
        }
    }
}

希望能帮助到你 :)

于 2013-01-10T04:05:08.130 回答