dynamically load the combo box...
How do I load the combo box dynamically
this is the code:
I am creating rows dynamically and those rows have AW comboboxes but im not able to create the dynamically.
I need to place the AW combo box in place of this normal HTML combobox.
Can anybody help me out??
this is the code:
<script>
var obj = new AW.UI.Combo;
obj.setControlText("Combo");
obj.setControlImage("favorites");
obj.setItemText(["Home", "Favorites", "Font size", "Search"]);
obj.setItemImage(["home", "favorites", "fontsize", "search"]);
obj.setItemCount(4);
document.write(obj);
</script>
I am creating rows dynamically and those rows have AW comboboxes but im not able to create the dynamically.
I need to place the AW combo box in place of this normal HTML combobox.
... '+'<select name="sel1" style="width:80px;"><option>ABC</option></select>'+' ...
Can anybody help me out??
Sameer
April 3,