它让我发疯,它不会消失。如果有一种方法可以禁用它,那就太好了,但更好的是像任何其他普通编辑器一样在一两秒后暂停。
对 qlik sense 桌面或浏览器视图的任何建议都会非常有帮助。
在当前版本 (2.2.4) 中,答案是否定的,这不能被禁用。
要将其作为创意提交,您可以将其登录到Qlik 社区以供审核
我编写了一个用户脚本,将工具提示移动到屏幕的左上角。这是包含用户脚本的存储库的链接。
这是用户脚本的主要内容:
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function (mutations, observer) {
// fired when a mutation occurs
$(".qv-function-tip-container").css("top", "20px");
$(".qv-function-tip-container").css("left", "20px");
});
// define what element should be observed by the observer
// and what types of mutations trigger the callback
observer.observe(document, {
subtree: true,
attributes: true
});