Installation
You can use Bower or npm package managers to install the dhtmlxScheduler package into your project.
It's also possible to include the necessary JS/CSS files from CDN.
npm - Evaluation and PRO versions
Professional Evaluation version
Download the trial Scheduler package and follow the steps mentioned in the README file. Note that the trial Scheduler version is available 30 days only.
Professional version
You can access the DHTMLX private npm directly in the Client's Area by generating your login and password for npm. A detailed installation guide is also available there. Please note that access to the private npm is available only while your proprietary Scheduler license is active.
npm - standard free version
You can install the Standard version of Scheduler from npmjs.com by executing the following command line:
npm install dhtmlx-scheduler
Only the Standard version of the Scheduler is available at npmjs.com
Bower
To install the Standard version of Scheduler through Bower, execute the following command line:
bower install scheduler
CDN
To include JS/CSS files from CDN, you should set direct links to dhtmlxscheduler.js and dhtmlxscheduler.css files:
<link rel="stylesheet" href="http://cdn.dhtmlx.com/scheduler/edge/dhtmlxscheduler.css"
type="text/css">
<script src="http://cdn.dhtmlx.com/scheduler/edge/dhtmlxscheduler.js"
type="text/javascript"></script>
You can find the full list of links you can include from CDN, depending on the version of dhtmlxScheduler in a separate article.
Adding PRO Edition into Project
All public sources (CDN, Bower, and npm) contain the Standard edition of the component which is distributed under the GPL license.
We also provide our private npm registry from where the Professional and Evaluation versions of the component can be installed.
If for some reason the methods described above are not available to you, there are two possible ways out:
- you can add the Pro version to your project by hand
- you can install the Pro version to your project via npm from a local directory
Installing the package from a local folder
If case of npm you can install the Pro package from a local folder using npm install ./local_path or npm link commands.
There are step-by-step instructions for both variants:
npm install
- Copy the Scheduler package into some local directory
- Go to your project directory
- Call
npm install ../scheduler-local-package-path
npm link
- Copy the Scheduler package into some local directory
- Call
npm linkin the package folder - Go to your project directory
- Call
npm link dhtmlx-scheduler
To see the difference between the Standard and PRO versions of the dhtmlxScheduler library, check the related article Standard vs PRO Library Versions.