How to create Multiple Calendar on a Single Site (Joomla)?

Is it possible to create multiple calendars with the free version of this script?

Reason. I have 4 different locations that i need people to be able to schedule events under. I don’t want them showing up all on one calendar.

Thank you in advance.

There can be only one scheduler on a page. It’s not possible to use multiple

Can you have multiple pages that contain different calendars?

unfortunately, Joomla plug-in allows to create only 1 scheduler

What about the standalone version?

You can place iframe on the page and load standalone scheduler inside it.
Standalone component can be linked to the php file, which contains DB config. So you can use 4 different configuration files for each scheduler - each linked to separate table in DB, or separate key field in table.

Basically, in case of standalone component you can have as much different scheduler, as necessary.

Thank you very much. The standalone is the way to go for me. Great Script!

For someone that is not a web programmer. Where can I find easy to understand direction on how to implement the standalone version?

You can start from the
docs.dhtmlx.com/doku.php?id=dhtm … ialization
which describes code of html page

And as second step
docs.dhtmlx.com/doku.php?id=dhtm … ntegration
which describes how server side code need to be configured.

You can use
samples\01_initialization_loading\05_loading_mysql.html
from full package, as example.

Thank you very much. Got it working. Great job on the script.