Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Why does PowerBI inserts this code segment to all Custom Visuals?
//de-reference powerbi loaded modules var $, jQuery, _; window.jQuery = window.$ = undefined; window._ = undefined;
And why are these variables still functional using the F12 tools in the browser?
> $("body")[0] <body class="visual-sandbox">…</body>
Wouldn't it be much more convenient to be able to use these already loaded libraries in the custom visuals instead of reload them a second time?
Solved! Go to Solution.
Power BI inserts this code to protect integrated jQuery from being replacented by custom visual's version.
This code isolates PBI libraries from custom visual ones.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
Power BI inserts this code to protect integrated jQuery from being replacented by custom visual's version.
This code isolates PBI libraries from custom visual ones.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
User | Count |
---|---|
3 | |
3 | |
2 | |
2 | |
2 |
User | Count |
---|---|
9 | |
8 | |
6 | |
5 | |
4 |