Differences from the original version

Creating new application | GitHub | CM tutorial - KendoUI edition

Differences from the original version

This document is not a tutorial on KendoUI bridge base application development - check Aurelia KendoUI Bridgearrow-up-right to learn more. Similarly this document does not teach you about RequireJS module loaderarrow-up-right. Instead it will show you how to manually enhance the original Contact Manager tutorialarrow-up-right to use KendoUI bridge and render its view using Aurelia KendoUI components, instead of using Bootstrap.

The source code for for the Contact Manager tutorial - KendoUI edition is herearrow-up-right, and this article will describe the details of changes applied to the application configuration files.

Add references to as specific versions of jQuery and aurelia-kendoui-bridge

Image 1

  • Set "stub: false in the loader section:

    Image 2

  • Add the code

             {
              "name": "aurelia-kendoui-bridge",
              "path": "../node_modules/aurelia-kendoui-bridge/dist/amd",
              "main": "index"
            }

    to the dependencies sectionarrow-up-right

Image 3

Note: the rest of the changes required to change the application rendering are of course specific to Aurelia KendoUI components. Check the following files for details:

Last updated