如何在显示 DataGrid 工具提示之前取消它?

发布于 2024-09-08 09:04:11 字数 263 浏览 2 评论 0原文

我有一个 DataGrid,它在每个项目上显示一个工具提示。但是有一些项目不应该有工具提示。所以我想我可以阻止被展示。

protected function toolTipStart(event:ToolTipEvent) : void
{
  LOG.debug('Start  ' + event); 

  event.stopImmediatePropagation();
}

但这不起作用。有人有想法吗?

问候 西里尔

I've got a DataGrid that shows a tooltip on each item.. but there are a few items where there shouldn't be a tooltip. So I thought I could prevent the being showed.

protected function toolTipStart(event:ToolTipEvent) : void
{
  LOG.debug('Start  ' + event); 

  event.stopImmediatePropagation();
}

But it does not work. Has anyone an idea?

regards
Cyrill

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

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

发布评论

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

评论(1

他不在意 2024-09-15 09:04:11

stopImmedatePropogation 只会阻止更多事件侦听器捕获该事件;它与是否创建工具提示无关。

我很确定您设置了 事件为空;那么工具提示将不会显示。

stopImmedatePropogation will just stop further event listeners from catching the event; it does not have a relation to whether or not the toolTip is created.

I'm pretty sure you set the toolTip property of the event to null; then the toolTip will not show up.

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