Timline Section on y_unit

hi all,

I use dhtmlxschudeler timeline, I search a solution to grab a multi data on mysql database. In fact whose I want is, in left column of my timeline, it’s for example 3-4 sections, and under this section the products that was stocked in these sections.

example :

Section 1
+ motors
+ bike
Section 2
+ red
+black
+green

etc …

I use for each section this php code :

 $list = new OptionsConnector($res);
$list->render_table("sector_intervention","sector_id","sector_id(value),sector_name(label)");
$scheduler->set_options("type", $list);

it return alll of my name section, but I not enable to grab the product for each section and display it in my template timeline.

Any idear to do this ? thanks a lot

Unfortunately so far there is no way to form nested set of data in scheduler through connectors - you will need some custom code on server side to form that data and load it on the client side.