All docs
V19.1
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
The page you are viewing does not exist in version 19.2.
19.1
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - Bower Package

NOTE
Bower is currently in maintenance mode. We recommend using npm or Yarn in new projects instead.

To install the DevExtreme Bower package, open the console, navigate to your app folder and run the following command:

bower install devextreme#~19.1 --save

Optionally, you can install the Knockout or AngularJS package:

bower install knockout
bower install angular

After the installation is completed, you can find all the libraries in the bower_components folder. Link them within the <head> tag on your index page:

HTML
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>

<!-- Reference either Knockout or AngularJS, if you do -->
<script type="text/javascript" src="bower_components/knockout/dist/knockout.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>

<!-- DevExtreme themes -->
<link rel="stylesheet" href="bower_components/devextreme/css/dx.common.css">
<link rel="stylesheet" href="bower_components/devextreme/css/dx.light.css">

<!-- DevExtreme library -->
<script type="text/javascript" src="bower_components/devextreme/js/dx.all.js"></script>