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.
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.
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
To install the Standard version of Scheduler through Bower, execute the following command line:
bower install scheduler
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.
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:
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 ../scheduler-local-package-path
npm link
in the package foldernpm 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.
Back to top