【发布时间】:2016-06-06 12:44:54
【问题描述】:
【问题讨论】:
标签: qliksense
【问题讨论】:
标签: qliksense
在当前版本 (2.2.4) 中,答案是否定的,这不能被禁用。
要将其作为想法提交,您可以将其登录到Qlik Community 以供审核
【讨论】:
我编写了一个用户脚本,将工具提示移动到屏幕的左上角。 Here 是指向包含用户脚本的存储库的链接。
这是用户脚本的主要内容:
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
});
【讨论】: