KENDO UI
Fast, Light, Complete
70+ UI widgets in one toolset
jQuery | Angular | React |Vue.JS | Bootstrap Friendly
Extensive Data Visualization Support
Modern HTML5/JS UI Component Library
Touch Support | Adaptive Rendering
JS Framework Agnostic | No lock in
Server Wrappers for ASP.NET MVC and Core 2.0, JSP and PHP
Why Kendo UI?
Everything you need, in one neat package
Web UI
30+ Widgets (and growing...)
AutoComplete
Button
Calendar
ColorPicker
ComboBox
DatePicker
DateTimePicker
DropDownList
Editor
Grid
ListView
MaskedTextBox
Menu
MultiSelect
Notification
NumericTextBox
PanelBar
PivotGrid
ProgressBar
Scheduler
Slider
Sortable
Splitter
Spreadsheet
TabStrip
TimePicker
ToolBar
Tooltip
TreeList
TreeView
Upload
Window
Data Visualization
Charts / Graphs/ Other Visuals
Area Charts
Bar Charts
Barcode
Box Plot Charts
Bubble Charts
Bullet Charts
Chart API
Diagram
Donut Charts
Funnel Charts
Gantt
Line Charts
Linear Gauge
Map
Pie Charts
Polar Charts
QR code
Radar Charts
Radial Gauge
Range Bar Charts
Scatter Charts
Sparklines
Stock Chart
TreeMap
Waterfall Charts
jQuery Basic development flow
First, set References
You can do local or use hosted CDNs
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/kendo.common.min.css" />
<link rel="stylesheet" href="styles/kendo.default.min.css" />
<script src="js/jquery.min.js"></script>
<script src="js/kendo.all.min.js"></script>
</head>
Then
Well, you know jQuery right?
<div id="calendar"></div>
// Select the 'calendar' div
$('#calendar');
That's all
You already know Kendo UI!
<div id="calendar"></div>
// Select the 'calendar' div
// Turn it into a Kendo UI Calendar
$('#calendar').kendoCalendar();
This is Imperative Initialization
You can also use semantic HTML
<div id="calendarControl" data-role="calendar"></div>
kendo.init(document.body);
This is Declarative Initialization
Use 'data-*' attributes
A </div> is a div .. readable markup
Data Source
A Developer's best friend!
-
Proxy for Data bindings with Kendo UI widgets
-
Works with local or remote data
-
Consistent API
-
Easy CRUD operations on data source
-
Shareable between widgets
-
Paging, Sorting, Filtering - client/server side
Data Source Hookup
<div id="products"></div>
<script type="text/x-kendo-template" id="template">
<h3>#:ProductName#</h3>
</script>
<script>
$(function() {
var template = kendo.template($("#template").html());
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: "http://demos.telerik.com/kendo-ui/service/Products",
dataType: "jsonp"}
},
change: function() {
$("#products").html(kendo.render(template, this.view()));}
});
dataSource.read();
});
</script>
Remote data bindings
Easy CRUD Operations
var crudServiceBaseUrl = "http://demos.telerik.com/kendo-ui/service";
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: crudServiceBaseUrl + "/Products", dataType: "jsonp"
},
update: {
url: crudServiceBaseUrl + "/Products/Update", dataType: "jsonp"
},
destroy: {
url: crudServiceBaseUrl + "/Products/Destroy", dataType: "jsonp"
},
create: {
url: crudServiceBaseUrl + "/Products/Create", dataType: "jsonp"
}
},
batch: true,
pageSize: 20
});
Configure service endpoints
Server-Side Wrappers
Text
Renders HTML5 Kendo UI Widgets
Pick your server stack!
ASP.NET MVC & Core 1.0 and 2.0
Angular Basic development flow
Joseph Mello
Inside Sales Representative
Progress Software
joseph.mello@progress.com
The Most Complete Ui Library for Data-Rich Web Applications
https://www.telerik.com/kendo-ui
Copy of Kendo UI
By Ignacio Fuentes
Copy of Kendo UI
An introduction to Kendo UI
- 918