Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
hello,I create a custom visual,enables users to use "echarts" in powerbi.
However, there are some features that can be implemented in ECharts, but not in PowerBI.
here is the error message:
Blocked opening '' in a new window because the request was made in a sandboxed frame whose 'allow-popups' permission is not set.
and this is ok.
what's wrong with me?
thanks for you help.
Solved! Go to Solution.
Hi @luojiandanPBI,
I don't know Echarts, but I presume that there might still be a listener that they add to the hyperlink that is causing the problem. In your applied event, you may need to stop propagation and prevent any default events from firing (that's where I'd start looking, at least).
Something like this might work (or give you something to look into further:
p1.addEventListener("click", (event) => {
event.preventDefault();
event.stopPropagation();
this.host.launchUrl(ele.url);
});
You could also try attaching the JS debugger in that method and stepping through to see where the code goes . If this doesn't initiate debugging in the browser tools, it could suggest that there is an event with higher precendence than yours and you may need to think about when to apply yours.
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi @luojiandanPBI,
I don't know Echarts, but I presume that there might still be a listener that they add to the hyperlink that is causing the problem. In your applied event, you may need to stop propagation and prevent any default events from firing (that's where I'd start looking, at least).
Something like this might work (or give you something to look into further:
p1.addEventListener("click", (event) => {
event.preventDefault();
event.stopPropagation();
this.host.launchUrl(ele.url);
});
You could also try attaching the JS debugger in that method and stepping through to see where the code goes . If this doesn't initiate debugging in the browser tools, it could suggest that there is an event with higher precendence than yours and you may need to think about when to apply yours.
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi,Daniel,thank you very much.