如何使GWT / GXT RichTextEditor Tooltip无法选择?

时间:2016-01-01 08:56:55

标签: javascript java css gwt gxt

我有一个RichTextEditor类(从com.extjs.gxt.ui.client.widget.LayoutContainer扩展而来),其中我使用(自己的)工具提示类来为这样的链接提供文本工具提示:https://jsfiddle.net/hkyLgam6/。< / p>

在我的项目中,工具提示仅在您将鼠标悬停在链接上时显示,但这可能并不重要。

为了能够正确删除链接和其他内容,我想让工具提示无法选择。因为每次选择链接时(例如通过双击它),工具提示文本也会被选中,并且链接删除在示例中失败。

尝试使用CSS来防止这种情况(例如上面的jsfiddle示例):

-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-o-user-select: none;
user-select: none;

没有用,所以我会非常感激任何想法来实现这一目标。

1 个答案:

答案 0 :(得分:0)

我想你只是忘记了Internet Explorer的CSS(至少是旧版的):

-ms-user-select: none;