Before changing anything, beware that settings will be applied only after pressing “Save” button. If you leave page without saving - all changes will be lost.
Allows to define access level for different groups of users:
And set private mode:
You can define
Panel shows the list of all events in the editable grid, you can add | delete | edit | reload events here.
Panel allows to define custom fields, which will be linked to events.
There are two types of custom fields
Each field can have
Select list fields have also extra flags
Depending on your needs you can choose one or both of these views.
http://docs.dhtmlx.com/doku.php?id=dhtmlxscheduler:units_view
For advanced users we offer extra possibility - to wide available functionality.
All you need - scheduler_include.html file (you can find it in the plugin's folder: you_wordpress/wp-content/plugins/event-calendar-scheduler/scheduler_include.html).
How does it work?
You add the desired additions to the file. Essentially, it's all. To the page the contents will be added automatically (the file is included to the page on default).
Print to PDF is a case in point for showing scheduler_include.html usage.
Let's consider the details.
The script includes server, client sides and generate PDF with scheduler, to start with.
The first thing you need to make is to download the latest package from http://www.dhtmlx.com/docs/download/dhtmlxscheduler-to-pdf.zip
Then, you have to unpack the contents of the 'server' folder somewhere under the web root ( you will need to enable php for this installation )
After you execute the previous steps - add a button or any other element on the page that will call the scheduler.toPDF() method. Immediately here we need our file.
This is the code you can include to scheduler_include.html:
<input type="button" name="Print" value="Print" onclick="scheduler.toPDF('../server/generate.php')" style='width:250px; margin-top:2px; font-weight:bold;'>
scheduler.toPDF('../server/generate.php') - the main function we use for implementation.
And the last step - check 'Print to pdf' in the 'Settings' tab and click the button 'Save'.