I want to ensure different users can view different contents based on their tasks belonged to. How to achieve it?
Hi,
if you use php connector on the server side, this should be quite easy.
Connector has a method for filtering data based on some condition, so you can filter your data as you need:
$gantt = new JSONGanttConnector($res, $dbtype);
$gantt->filter("user_id", $user_id);
docs.dhtmlx.com/doku.php?id=dhtm … ods#filter