KendoUI Bridge Documentation
  • Introduction
  • About this application
    • Introduction
    • Navigation guide
    • Components catalog
    • Installation
    • Catalog index
    • Themes selector
  • About Aurelia
    • Key features
  • About KendoUI
    • Integrated with Aurelia
    • Why choose KendoUI
  • Developers tutorials
    • Introduction
    • Sample application structure
    • esnext - kendo
    • esnext-aspnetcore - kendo-2017
    • esnext-aspnetcore - kendo-2015
    • typescript - kendo
    • typescript-aspnetcore - kendo
    • esnext- webpack
    • typescript-webpack kendo
  • Developers notes
    • Current limitations
    • Loading a subset of controls
    • Lazy loading wrappers
    • Running gists
    • Kendo Tooltip HTML content
    • Bundling details
    • Dynamic content creation
    • Bundling step by step instructions
    • What you need to know
    • Localization
    • Prevent JSPM from loading jQuery
  • Bridge developers notes
    • Introduction
    • Bridge utilities
    • Generation of bindables
    • Babel DTS generator
    • Grid HTML api
    • Template compilation
    • Harvesting bindable variables
    • Registry helper class
    • Creating gists for the catalog app
  • Troubleshooting
    • Introduction
    • Using gists and GistRun
Powered by GitBook
On this page
  • 5.2 Loading a subset of controls
  • Special functions
  • Mobile applications
  1. Developers notes

Loading a subset of controls

PreviousCurrent limitationsNextLazy loading wrappers

Last updated 7 years ago

Application Developer notes

5.2 Loading a subset of controls

This section contains additional information which we hope will be of value to Aurelia application developers using KendoUI bridge.

You may often want to load only a subset of the components that KendoUI bridge provides. Instead of the requirement to load them all at the bootstrap time - controlled by the following code in main.js class:

...
.plugin('aurelia-kendoui-bridge', kendo => kendo.pro())
...

If instead, you wish to use only a subset of KendoUI components - say, kendoButton and kendoGrid, you should express that by using the following pattern;

...
.plugin('aurelia-kendoui-bridge', kendo => kendo.kendoButton().kendoGrid())
...

Special functions

.kendoTemplateSupport() - will load the <k-template> custom element necessary for custom templates in a Kendo control.

.useValueConverters(); - will load the value convertes around useful Kendo functions. demonstrates these value converters.

Mobile applications

More information about mobile applications with Kendo controls can be found on

This sample
this website