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…