Carl Bergenhem
Product Manager @KendoUI. Web developer, speaker, and video gaming aficionado.
Carl Bergenhem
Progress Software
Manager, Sales Engineering
@carlbergenhem
Joseph Mello
Progress Software
Inside Sales Representative
joseph.mello@progress.com
Carl Bergenhem
Progress Software
Manager, Sales Engineering
@carlbergenhem
Include Kendo UI scripts
Code away!
Add the CSS for your theme of choice
<script src="scripts/jquery-1.12.3.min.js"></script>
<script src="scripts/angular.min.js"></script>
<script src="scripts/kendo.all.min.js"></script>
<link rel="stylesheet" href="styles/kendo.common.min.css">
<link rel="stylesheet" href="styles/kendo.material.min.css">
<div id="chart"></div>
<script>
$(document).ready(function() {
$("#chart").kendoChart({
...
});
});
</script>
(Kendo UI)
Set up your Angular project
Add Progress NPM registry
Add the Kendo UI Package to your project
npm install -g @angular/cli;
ng new my-first-angular2-project --style=scss;
cd my-first-angular2-project;
npm login --registry=https://registry.npm.telerik.com/ --scope=@progress
npm view @progress/kendo-angular-grid versions
npm install -S @progress/kendo-angular-buttons
// Import the ButtonsModule...
import { ButtonsModule } from '@progress/kendo-angular-buttons';
(Kendo UI for Angular)
"A runtime for building and running native iOS and Android apps with a single JavaScript code base"
!=
!=
!=
No DOM
No cross-compilation
Direct access to native APIs in JS
(NativeScript)
By Carl Bergenhem
Overview of the Kendo UI JavaScript library including a quick walk through of the cross-platform native mobile app framework NativeScript.
Product Manager @KendoUI. Web developer, speaker, and video gaming aficionado.