Kendo UI SDK and Bridge Installation
  • Introduction
  • KendoUI SDK
  • Aurelia KendoUI bridge
    • Why using the bridge?
  • Installation
    • Installing Kendo
      • Simple app provisioning
        • kendo.custom.min.js
      • Advanced app provisioning)
        • JSPM
        • Webpack
        • Aurelia-CLI
    • Installing the bridge
      • JSPM
      • Webpack
        • JavascriptServices
        • Skeleton
      • Aurelia-CLI
  • Next Steps
Powered by GitBook
On this page
  1. Installation
  2. Installing Kendo
  3. Advanced app provisioning)

Webpack

PreviousJSPMNextAurelia-CLI

Last updated 7 years ago

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

  1. Follow these instructions to download Kendo from 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';`
here
http://docs.telerik.com/kendo-ui/intro/installation/npm