3.2.0

Combo box drop down fonts

I got realy confused with changing combo box drop down text size. It is realy frustrating browising through your forum existing topic; they're poorly categorized.

var listFilter = new AW.UI.Combo;
listFilter.setId("listfilterinput");
listFilter.setControlText("Active Items");
listFilter.setItemText(["All Items","Active Items", "Inactive tems"]);
listFilter.getContent("box/text").setAttribute("font-size", "10px");
listFilter.setItemValue(["all","active", "inactive"]);
listFilter.setItemCount(3);
listFilter.onControlTextChanged = function(i){
}
listFilter.refresh();
Tom Feddel
September 4,
For the popup list items that should be

listFilter.getItemTemplate().setStyle("font-size", "10px");
Alex (ActiveWidgets)
September 4,

This topic is archived.

See also:


Back to support forum