DropDown not working inside a grid
Hi, newbie to active widgets here...
I am trying to make a single cell in the grid example a dropdown...I see the dropdown but i can't click on the values to save them.
What is missing? Help please :)
I am trying to make a single cell in the grid example a dropdown...I see the dropdown but i can't click on the values to save them.
var obj2 = new AW.UI.Combo;
obj2.setId("myCombo");
obj2.setControlText("Some text");
obj2.setControlImage("favorites");
obj2.setItemText(["Home", "Favorites", "Font size", "Search"]);
obj2.setItemImage(["home", "favorites", "fontsize", "search"]);
obj2.setItemCount(4);
obj.setCellTemplate(obj2, 1, 1);
What is missing? Help please :)
Claude
June 1,