Webpack
This section describes the process of "provisioning the application" as defined here
Follow these instructions to download Kendo from npm: http://docs.telerik.com/kendo-ui/intro/installation/npm. In summary, you need to run the command
jspm install npm:@progress/kendo-ui
In main.js, use
import '@progress/kendo-ui/js/kendo.all';
to load all Kendo controls. In order to load a specific control useimport '@progress/kendo-ui/js/kendo.button';
Load css from main.js with:
import '@progress/kendo-ui/css/web/kendo.common.min.css'; import '@progress/kendo-ui/css/web/kendo.bootstrap.min.css';`
Last updated