Is it possible to set virtual root ID of tree in Connector?

Is it possible to set the virtual root ID of a tree or gridtree Connector?

The tree object constructor allows you to set a virtual root ID.
[url]Start DHTMLX Docs

I know that default tree virtual root value is 0. However my Connector is producing a node whose ID is also 0 and causing a conflict. The ideal solution would be to alter the virtual root ID of the tree in both the tree component and Connector.

It seems like it should be something simple to do, but I’m having trouble with it.

Thanks
Bill

Unfortunately this value is hardcoded

tree_connector.php, line 212

[code] public function parse_request(){
parent::parse_request();

	if (isset($_GET["id"]))
		$this->request->set_relation($_GET["id"]);
	else
		$this->request->set_relation("0"); // <= this is it![/code]