ExtJS4:使用 Ext.draw 停止事件冒泡

发布于 2024-11-07 09:22:14 字数 739 浏览 0 评论 0原文

我在使用 ExtJS4 及其绘图组件进行事件冒泡时遇到了一些困难:

drawComponent.on('click', function(){
    var sprite = Ext.create('Ext.draw.Sprite', {
        type: 'circle',
        fill: '#79BB3F',
        stroke: '#000000',
        'stroke-width': 1,
        radius: 100,
        x: 100,
        y: 100,
        surface: this.surface,
        listeners: {
            'click': function(el,e){
                console.log('clicked');
                e.stopPropagation();
            }
        }
    });
    sprite.show(true);
});

单击 drawComponent 时,会绘制一个圆圈。单击圆圈时,这只应触发圆圈的 clickHandler,而不是 drawComponent

知道我的代码可能有什么问题吗? e.stopPropagation() 应该停止事件冒泡。

谢谢, 基耶鲁斯

I'm having some difficulties with event bubbling with ExtJS4 and its drawing components:

drawComponent.on('click', function(){
    var sprite = Ext.create('Ext.draw.Sprite', {
        type: 'circle',
        fill: '#79BB3F',
        stroke: '#000000',
        'stroke-width': 1,
        radius: 100,
        x: 100,
        y: 100,
        surface: this.surface,
        listeners: {
            'click': function(el,e){
                console.log('clicked');
                e.stopPropagation();
            }
        }
    });
    sprite.show(true);
});

When clicking the drawComponent, a circle is drawn. When clicking the circle, this should only trigger the clickHandler of the circle, not the drawComponent.

Any idea what could be wrong with my code? e.stopPropagation() should stop the event bubble.

Thanks,
Chielus

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小苏打饼 2024-11-14 09:22:14

使用 addManagedListeners 方法而不是 listeners 属性来添加单击事件。

组件上的 click 事件也应该被删除。

参考

Use the addManagedListeners method rather than the listeners property to add the click event.

The click event on the component should be removed as well.

References

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文