The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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