窗口无法关注标题点击extjs

时间:2016-11-29 13:17:13

标签: javascript extjs header window

窗口标题点击的方法名称是什么?问题是当点击标题时窗口没有焦点,我花了很多时间检查但没有结果,所以任何人都可以帮助我,谢谢。

2 个答案:

答案 0 :(得分:0)

修改:我添加了指向fiddle

的链接

您可以将后渲染添加到窗口对象,并手动将单击事件添加到窗口标题

listeners: {
    afterrender: function(component, eOpts) {
    document.getElementById(component.header.id).onclick = function myFunction() {
        console.log("You clicked the window header");
    };
}

答案 1 :(得分:0)

如果您使用extJS here is a simple way在元素创建时向标题添加点击侦听器,则不应使用文档引用。

你可以像其他所有组件一样简单地添加一个监听器,只需这样做:

header:{
   listeners:{
       click:function( header , e , eOpts){
           console.log("You clicked the window header");
       }
   }
}

PS。 I forked michwalk solution to show my example in the same way