gpt4 book ai didi

java - Ext.draw.sprite事件未触发

转载 作者:行者123 更新时间:2023-12-03 11:07:03 24 4
gpt4 key购买 nike

我在 Extjs 4.2 的图表上创建了一个 Sprite 项,我想捕获该 Sprite 项的鼠标事件。但我没有收到事件。
有什么想法吗?

var redcircle = Ext.create('Ext.draw.Sprite', {
type: 'circle',
radius: 10,
fill: '#f00',
x: 10,
y: 10,
listeners: {
'mouseover': function (args) {
alert('Mouse over')
}
},
group: 'circles',
surface: surface
}).show(true);

最佳答案

我已经做了一个例子,它在我这边工作

 Ext.onReady(function () {
Ext.create('Ext.draw.Component', {
renderTo: Ext.getBody(),
width: 200,
height: 200,
items: [{
type: 'circle',
radius: 90,
x: 100,
y: 100,
fill: 'blue',
listeners:{
mouseover:function( e, t, eOpts ){
alert("Mouse Over");
}
}
}]
});
});

关于java - Ext.draw.sprite事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27801025/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com