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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.