dhtmlxScheduler

quisiera saber como conectar el calendario con DB2 porfavor.

There is no native support for DB2 ( this DB type is not supported by connectors currently )
If you are fluent with php I can provide a steps, how existing connectors can be extended for DB2 support.

Hello i want to know how can i connect dhtmlScheduler with db2 if i use dhtmlxConnector_java_v15_120612. I am trying but only some things work correctly. In specifics i have problems with the visual presentation when js read the data of db2.

An example:
When i insert all is correct like this image
postimg.org/image/3nyir3i3r/

but when i do f5 the presentation change like this.
postimg.org/image/f6qss3g6x/

my table in db2 is
postimg.org/image/bb3tus9dh/

Thanks.

I made a mistake the example is this not above
Example:
When i insert all is correct like this image
postimg.org/image/f6qss3g6x/

but when i do f5 the presentation change like this.
postimg.org/image/3nyir3i3r/

my table in db2 is
postimg.org/image/bb3tus9dh/

If you are using recurring events be sure to use the full php config

$scheduler->render_table("events_rec","event_id", "start_date,end_date,text,rec_type,event_pid,event_length");

Table must contain 3 addition fields - rec_type,event_pid,event_length

docs.dhtmlx.com/scheduler/recurring_events.html

Hello, the funcionalities of recurrent events are supported with the java connector? if not: could you give me instruccion or some help to implement in java?

It will work with java connectors in the same way.
You need to have extra fields in DB and include those extra fields in render_table command

scheduler.render_table("events_rec","event_id", "start_date,end_date,text,rec_type,event_pid,event_length");