how to filter a y_unit on a timelineview [Resolved]

Hello,
I have this TimeLine:

scheduler.createTimelineView({
name: “timeline”,
x_unit: “minute”,
x_date: “%H:%i”,
x_step: 30,
x_size: 24,
x_start: 16,
x_length: 48,
y_unit:scheduler.serverList(“user”),
y_property: “empregado”,
render:“bar”
})

i need filter the y_unit:scheduler.serverList(“user”),

I already looked for documentation, examples, but I did not find anything about it. Does anyone have something like that?

on my php file i hve this:

   $list = new OptionsConnector($res, $dbtype);
$list->filter("id", "2");
$list->render_table("empregado","id","id(value),nome(label)");

But does not work this filter, This is bringing all the records.

Hi Guys !
I Found a solution !

$list->render_sql(“SELECT id as value, nome as label FROM empregado WHERE id =1”, “value”,“value,label”);

This will filter the way I need it

Thanks