Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
drewhaller
Frequent Visitor

Problems with Kendo in custom visual with api version 2.x

I was able to get kendo grids and charts working inside a custom visual by following this approach

https://github.com/whileoneloop/kendo-ui-power-bi-visual

 

I then upgraded Kendo to 2019.r1.  This still works with version 1.7.0 of custom visuals api. 

 

However when upgrading using pbiviz update 2.3.0 (or 2.5.0) Kendo stops loading.  Has anyone gotten kendo working with kendo.all.min.js in these versions of API?

 

First issue found is solved by removing the hack (required in older version) from window.js which adds devicePixelRatio and innerWidth like so 

Object.defineProperties(window, {

   'devicePixelRatio': {
       get: function () {
           return window.window.devicePixelRatio;
       }
    },
    'innerWidth': {
        get: function () {
            return window.window.innerWidth;
        }
    }
});

 

However after removing that Kendo cannot initialize and fails with 
   VM1528:formatted:116772 Uncaught TypeError: Cannot read property 'util' of undefined
 
After some troubleshooting I could trace a line inside kendo that calls 
  this.kendo.util = this.kendo.util || {},
but this.kendo is undefined.
 
this = window with name "visual-sandbox"
 
here is screenhot of it at that break point in chrome debugger
debug-powerbi-kendo.jpg
0 REPLIES 0

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.