extjs 鼠标放到按钮上时触发的什么事件啊,怎么重写这个事件啊
1个回答
展开全部
mouseover( Button this, Event e )
鼠标居上触发事件。Fires when the mouse hover... 鼠标居上触发事件。Fires when the mouse hovers over the button
监听器会传入以下的参数:
this Button
e Event
事件对象。The event object
在button的listeners属性中加上这个mouseover事件监听就行了
鼠标居上触发事件。Fires when the mouse hover... 鼠标居上触发事件。Fires when the mouse hovers over the button
监听器会传入以下的参数:
this Button
e Event
事件对象。The event object
在button的listeners属性中加上这个mouseover事件监听就行了
追问
谢谢你哦,我的代码是这样的:
var tbar = new Ext.Toolbar({
})
tbar.add({
id : 'all',
text : 'ALL',
handler : renderContent,
listeners : {
mouseover: function(button, event) {
alert(2);
}
}
});
var contentPanel = new Ext.Panel({
tbar : tbar
});
点击没反应哦,能不能帮我看看啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询