dhtmlx scheduler on struts spring ibatis

Hi,

I would like to ask if it is possible to use the scheduler using the framework for java in struts spring ibatis?

Thanks, your response will be greatly appreciated.

Hello,

As scheduler is a client side component it could be used with anything. The only question is how are you going to handle the data. From our side to make things easier we provide dhtmlxConnector, java edition ( dhtmlx.com/docs/products/dht … x.shtml?mn ).

Kind regards,
Ilya

Hi Ilya!

First of all thank you so much for the response. It was exactly what I have no clue about handling the data. For example this codes in the file below for converting it to ibatis in this format:







I hope you can help me. Thank you.

Hi Ilya!

First of all thank you so much for the response. It was exactly what I have no clue about handling the data. For example this codes in the file below

public class BasicConnector extends ConnectorServlet {

@Override
protected void configure() {
Connection conn= ( new DataBaseConnection()).getConnection();

  SchedulerConnector c = new SchedulerConnector(conn);
            c.enable_log("log.txt", true);
  c.render_table("events","event_id","start_date,end_date,text");

}

}

for converting it to ibatis in this format:








I hope you can help me. Thank you.