Combo box newb question

Guys,
I am using this visual designer to create layout with a form and combo box.

I need to fill the combo box with data but I don’t know how to reference it. The code that the designer wrote is:
var str = [
{ type:“combo” , name:“route_cbx”, label:“Route”, inputWidth:120 },
{ type:“input” , name:“district_tbx”, label:“District” },
{ type:“input” , name:“am_tbx”, label:“Assigned AM” },
{ type:“input” , name:“route_size_tbx”, label:“Route Size” }
];
So how do I get ahold of the combo in order to add options from database. When I view the page elements in Chrome, all I see is an empty div. So where is the combo box?
By the way, I am doing this without the connector component.

Help…

So same question but this time… I also need a reference to the object in order to bind events.

The designer says “Component don’t have any public events”…

Geoff

again,
answered my own question. I noticed others had asked as well so for everyone’s benefit.

To get a reference to the form components, use:
form.getCombo();… form.getInput()…

Just not easy to find in the docs.

Hi to all!
We will add these nuances in documentation in the near future.