export data easily with kendo ui

37
Export Data With Ease Using Kendo UI Lohith G N

Upload: lohith-gn

Post on 14-Jul-2015

748 views

Category:

Technology


5 download

TRANSCRIPT

Page 1: Export Data Easily With Kendo UI

Export Data With Ease UsingKendo UILohith G N

Page 2: Export Data Easily With Kendo UI

About Me

Technical Evangelist

Microsoft MVP (ASP.NET/IIS)

[email protected]

@kashyapa

http://www.kashyapas.com

http://www.telerikhelper.net

Lohith G N

http://www.telerik.com

Page 3: Export Data Easily With Kendo UI

Agenda

• What is Kendo UI?

• Excel Export

• PDF Export

Page 4: Export Data Easily With Kendo UI

®

Page 5: Export Data Easily With Kendo UI

Fast, Light, Complete70+ jQuery-based UI widgets in one toolset

JS Framework Agnostic | No lock in

AngularJS Integration | Bootstrap Theme

Extensive Data Visualization Support

Mobile Specific Widgets | App Tooling

Touch Support | Adaptive Rendering

Modern Comprehensive HTML5/JS Framework

Page 6: Export Data Easily With Kendo UI

Why Kendo UI?Everything you need, in one neat package

Page 7: Export Data Easily With Kendo UI

What's in the Box?The different parts of Kendo UI

Application Framework

Web UI

Mobile UI

Data Visualization

Page 8: Export Data Easily With Kendo UI

Web UI30 Widgets (and growing...)

AutoComplete

Button

Calendar

ColorPicker

ComboBox

DatePicker

DateTimePicker

DropDownList

Editor

Grid

ListView

MaskedTextBox

Menu

MultiSelect

Notification

NumericTextBox

PanelBar

PivotGid

ProgressBar

Scheduler

Slider

Sortabl

e

Splitter

TabStrip

TimePicker

ToolBar

Tooltip

TreeView

Upload

Window

Page 9: Export Data Easily With Kendo UI

Mobile UIA complete application toolset for building hybrid and mobile web applications

ActionSheet

ButtonGroup

Drawer

Forms

ListView

MobileButton

ModalView

NavBar

PopOver

Scroller

ScrollView

SplitView

Switch

TabStrip

Page 10: Export Data Easily With Kendo UI

Data VizualizationCharts / 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

Page 11: Export Data Easily With Kendo UI

From the very SimpleA Kendo UI AutoComplete Widget

Page 12: Export Data Easily With Kendo UI

To the very ComplexA Kendo UI Scheduler

Page 13: Export Data Easily With Kendo UI

From Web essentialsA Kendo UI Grid

Page 14: Export Data Easily With Kendo UI

To MobileA Kendo UI Mobile ActionSheet

Yes, this works Cross-Platform .. And renders adaptively!

Ready?

Page 15: Export Data Easily With Kendo UI
Page 16: Export Data Easily With Kendo UI

And Everything in BetweenA Kendo UI Donut Chart

Page 17: Export Data Easily With Kendo UI

Application FrameworkEverything ready out of the box

1. DataSource

2. Single Page Application (SPA)

3. Globalization

4. Templates

5. MVVM

6. Validators

7. Effects

8. Drag-And-Drop

9. AngularJS Integration

10. Bootstrap Friendly

Page 18: Export Data Easily With Kendo UI

We love Open Source

Application Framework

Web UI

Mobile UI

Yup, it's Free .. there is no

catch!

Kendo UI Core is on GitHub - Use it. Fork it.

Page 19: Export Data Easily With Kendo UI

Kendo UI ProfessionalFor Enterprise apps

1. Grid | PivotGrid

2. Barcode | QR Code

3. Scheduler | Gantt

4. Editor | Upload

5. Gauge

6. Diagram

7. Map

8. Data Visualization | ~20 Types

Feature-rich with consistent API

Page 20: Export Data Easily With Kendo UI

Server-Side WrappersRenders HTML5 Kendo UI Widgets

ASP.NET MVC

PHP

JSP

Pick your server stack!

Page 21: Export Data Easily With Kendo UI

Angular JS IntegrationDirectives to render Kendo UI Widgets

<script src="js/jquery.min.js"></script>

<script src="js/angular.min.js"></script>

<script src="js/kendo.all.min.js"></script>

<div id="example" ng-app="KendoDemo">

<div ng-controller="AutoComplete">

<h4>Select Telerik Product: </h4>

<input kendo-auto-complete ng-model="product" k-data-source="productNames"/>

</div>

</div>

<script>

angular.module("KendoDemo", [ "kendo.directives" ])

.controller("AutoComplete", function($scope){

$scope.productNames = [

"Telerik Kendo UI",

"Telerik AppBuilder",

"Telerik UI for ASP.NET"

];

})

</script>

Page 22: Export Data Easily With Kendo UI

Let's talk Mobile ...

Use Web skills to make Mobile Apps!

Page 23: Export Data Easily With Kendo UI

Kendo UI MobileBuild Hybrid or Mobile Web apps

Completely Open Source & Free!

Bower install to any project

Has Angular Directives to render

Totally Cross-Platform

Page 24: Export Data Easily With Kendo UI

Hybrid Mobile AppsKendo UI Mobile powered

Best with AppBuilder

Use Cordova Plugins for Native API

Respective App Store

presence

Page 25: Export Data Easily With Kendo UI

Remember the UI WidgetsA complete application toolset for building hybrid and mobile web applications

ActionSheet

ButtonGroup

Drawer

Forms

ListView

MobileButton

ModalView

NavBar

PopOver

Scroller

ScrollView

SplitView

Switch

TabStrip

Page 26: Export Data Easily With Kendo UI

To Recap ..Something for everyone

Kendo UI CoreApplication Framework | Web | Mobile | Completely Free

Kendo UI ProfessionalEnterprise UI | Licensed per Developer | Support & Maintenance

Page 27: Export Data Easily With Kendo UI

Excel Export

Page 28: Export Data Easily With Kendo UI

Excel Export Basics

• Create Excel Documents in JavaScript & Save on Client Machine

• Requires JSZip Library

• Supported by all Modern Browsers

• Older Browsers – Server Side Proxy

Page 29: Export Data Easily With Kendo UI

Creating Excel Document

• Instantiate kendo ooxml workbook• Workbook has Array of Sheets• Each Sheet has Rows• Each Row has Cells

• Call toDataURL – excel file as a data URI

• Call kendo.saveAs()

Page 30: Export Data Easily With Kendo UI

Excel Export Customization

• Appearance• background, bold, color, fontName, fontSize, hAlign, italic,

underline, vAlign

• Freezing Columns & Rows• rowSplit, colSplit

• Column Width

• Colspan & Rowspan

Page 31: Export Data Easily With Kendo UI

PDF Export

Page 32: Export Data Easily With Kendo UI

PDF Export Basics

• Kendo UI Drawing API

• X-Browser Vector Graphics Library

Page 33: Export Data Easily With Kendo UI

Demo

Page 34: Export Data Easily With Kendo UI

Export Data from Data Grid

Page 35: Export Data Easily With Kendo UI

Exporting from Kendo UI Grid

• Out of the box support• Supports Excel & PDF export

• Toolbar Bar Commands• commands – “excel”, “pdf”

• Programmatic invocation• saveAsExcel(), saveAsPdf()

• Export Customization through events

Page 36: Export Data Easily With Kendo UI

Demo