Book Image

CoffeeScript Application Development Cookbook

By : Mike Hatfield
Book Image

CoffeeScript Application Development Cookbook

By: Mike Hatfield

Overview of this book

Table of Contents (18 chapters)
CoffeeScript Application Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Using the Kendo UI Core widgets


In this recipe, we will look at some of the common widgets that come with Kendo UI Core, a free library provided by Telerik to the open web.

Getting ready

Begin by downloading a copy of the Kendo UI Core library from the Telerik website at http://www.telerik.com/download/kendo-ui-core.

Once downloaded, extract the contents of the ZIP file into a directory called kendo.

Our demo will use the Bootstrap and Lightbox libraries but these will be linked from a CDN.

Create a file named index.html with the following contents:

<!DOCTYPE html>
<html>
<head>
  <title>KendoUI Widget Demo</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.1/css/bootstrap.min.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/css/lightbox.css">
  <!-- Add Kendu CSS here -->
  <style>
    .value {
      color: red;
    }
  </style>
</head>...