may I rename tasks gantt table

I tried to rename “gantt_tasks” table to “my_table” on mysql database.
I use CodeIgniter, so i change the controller of “Gantt” form this :

$scheduler->render_table(“gantt_tasks”,“id”,“start_date,duration,text,progress,parent,type,open”);
}

to this :

$ scheduler-> render_table (“my_table”, “id”, “start_date, duration, text, progress, parent, type, open”);

But this is not working :question: :question:
Can I change the “gantt_tasks” table with another name?
Thanks :slight_smile:

Yep, the table can have any name, just use it in the render_table command.

If it somehow doesn’t work for you - try to enable server side logs.
docs.dhtmlx.com/connector__php__errors.html

Its fixed, Thanks a lot sir :smiley: :smiley: :smiley: