Combo Box list not displaying
Please help in displaying the combo box. The combo box does not appear with the dropdown list. Only a box appears with the default value of "Combo".
Here's my code.
====================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script src="aw.js"></script>
<link href="aw.css" rel="stylesheet"></link>
</head>
<body>
<script>
var obj = new AW.UI.Combo;
obj.setControlText("Combo");
obj.setItemText(["Home", "Favorites", "Font size", "Search"]);
obj.setItemCount(4);
document.write(obj);
</script>
</body>
</html>
Thanks for any help!
Here's my code.
====================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script src="aw.js"></script>
<link href="aw.css" rel="stylesheet"></link>
</head>
<body>
<script>
var obj = new AW.UI.Combo;
obj.setControlText("Combo");
obj.setItemText(["Home", "Favorites", "Font size", "Search"]);
obj.setItemCount(4);
document.write(obj);
</script>
</body>
</html>
Thanks for any help!
Gary
August 2,