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 the bridge
  3. Webpack

Skeleton

  1. npm install aurelia-kendoui-bridge --save

  2. in src/main.js load the plugin using .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge')):

    aurelia.use
     .standardConfiguration()
     .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge'))
     .developmentLogging();
  3. in webpack.config.js add an entry for the aurelia-kendoui-bridge:

    entry: {
     app: ['aurelia-bootstrapper'],
     vendor: ['bluebird', 'jquery', 'bootstrap', 'aurelia-kendoui-bridge'],
    },
  4. That's it!

PreviousJavascriptServicesNextAurelia-CLI

Last updated 7 years ago