Webpack

This section describes the process of "provisioning the application" as defined here

  1. 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
  2. In main.js, use import '@progress/kendo-ui/js/kendo.all'; to load all Kendo controls. In order to load a specific control use import '@progress/kendo-ui/js/kendo.button';

  3. 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