How to connect to my own DB

Hello,
I need to know if it’s possible to get and set events to my own database with my ownfileds, due to I need to display the Scheculer with events depending on the user connected.
Is this possible?

Kind regards,

Hello,

You can add required fields to data.
Ex.:
{ start_date: “2015-04-20 12:20”, end_date: “2015-04-20 13:00”, text:“Event 1”, user:“Kate”}

Hello Polina,

Thank you for your answer.
I’m new with Scheduler. Could you help me a little more?
Where I have to define this line?
{ start_date: “2015-04-20 12:20”, end_date: “2015-04-20 13:00”, text:“Event 1”, user:“Kate”}
And where I have to define the user to get the linked event data to that user?

Kind regards,
Manel

Hello,

You can use filtering events if you want to display event only for a particular user. Please, check the next article:
docs.dhtmlx.com/scheduler/filtering.html
Also there you can see where you need to define the line (in this case instead ‘user’ - ‘type’).

I do this right now using Postgres, jQuery, and CakePHP.

Cake is brilliant at this, as I can define a table making use of only the event data, then add my user id, then just send the event object as the request data, and Cake handles the rest.