Styling the COMBOBOX

Hi there,

Wondering if anyone can help me out here. On the latest version of Servoy, is there a way that I can drop the grey background from the combobox? similar to if you uncheck the Show Click on the buttons. I don’t really want to go and edit the look and feel and the CSS doesnt seem to let you edit the gray background.

Thanks

Hi,

check this Java Swing UIManager LookAndFeel (LAF) Defaults

you can something like

[attachment=1]MetalCOmboBoxUI.png[/attachment]

application.putClientProperty("ComboBoxUI", 'javax.swing.plaf.metal.MetalComboBoxUI');

or

[attachment=0]combo.png[/attachment]

application.putClientProperty("ComboBoxUI", 'com.sun.java.swing.plaf.motif.MotifComboBoxUI');

Regards

Thanks Peter,

I will give that a whirl.