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
  • JSPM
  • Important
  1. Installation
  2. Installing the bridge

JSPM

PreviousInstalling the bridgeNextWebpack

Last updated 7 years ago

  1. run jspm install aurelia-kendoui-bridge

  2. open main.js and register the plugin:

     export function configure(aurelia) {
       aurelia.use
         .standardConfiguration()
         .developmentLogging()
         .plugin('aurelia-kendoui-bridge');
    
       aurelia.start().then(a => a.setRoot());
     }

Important

It is strongly recommended to continue with the page

getting started
JSPM