Bugs in dhtmlxGantt 2.1.0 GPL

After i upgraded to version 2.1.0 it shows an error when you click ‘+’ button, lightbox doesn’t show. I think beta version like posted before was better. Where can i get that ?

Hi,
can you provide a configuration code, that allows to reproduce the bug?
‘plus’ button seems working with basic examples-

docs.dhtmlx.com/gantt/samples/01 … _init.html

My conf code

gantt.config.date_scale = "%d %M"; 
gantt.config.fit_tasks = true;
gantt.config.order_branch = true;
gantt.config.date_grid = "%d %M %Y";
gantt.config.xml_date = "%Y-%m-%d %H:%i";
gantt.init("gantt");
gantt.load('http://localhost/theserver/index.php/task/data');
var dp = new dataProcessor('http://localhost/theserver/index.php/task/data');
dp.action_param = "dhx_editor_status";
dp.init(gantt);

My PHP file

<?php

require_once("./dhtmlx/connector/gantt_connector.php");
require_once("./dhtmlx/connector/db_phpci.php");
DataProcessor::$action_param ="dhx_editor_status";

class Task extends CI_Controller{
	function __construct(){
		parent::__construct();
	}
	
	
   public function data()
	{
		$gantt = new JSONGanttConnector($this->db, "phpCI");
		$gantt->render_links("gantt_links", "id", "source,target,type");
               $gantt->render_table("gantt_tasks","id", "start_date,duration,text,progress,sortorder,parent, type","");
	}
}

Thank you for ur quick reply, berore migrated i use those code and everything was just fine… i also amazed by the performance, please help me figure it out…

NP: when i try this sample --> docs.dhtmlx.com/gantt/samples/01 … ddate.html

it shows the same behavior

Hi, we’ve confirmed the issue. The fix will be released in the nearest time, I’ll post here when it happens

Thank you aliaksander, glad to know that, it’s a good product after all

Hi,
we’ve released the fix, you can download it from the product page (v2.1.1)
dhtmlx.com/docs/products/dhtmlxGantt/index.shtml

Wow thank you its working really well right now