Updatting server side dhtmlx java connector

hello dear,

i have downloaded dhtmlx java connector schedular from your site.
now i want to edit the code of basic_init_connector.html file whic is linked to servelt in which i wish to fetch the events according to my cutom query.

but it is not showing me the results as it shows in database screen.

e.g
c.render_table(“events”,“event_id”,“start_date,end_date,event_name,details”)
this will show all the events .

but i want to see only the event with event_id=93 let us say.

what would be the query to fire.

i have tried but it is not working? why is it so?

and where i had to make the changes in my files including .html and java files

Please reply as soon as possible.

Thanks

Please acknowledge!

Hi,
you may use render_sql instead of render_table:

c.render_sql("SELECT * FROM events WHERE event_id=93","event_id","start_date,end_date,event_name,details")