Hi,
when I want to change global background color for JTextField I use this example code:
UIManager.getLookAndFeel().
getDefaults().put("TextField.background", Color.BLUE);
It works.
How can I change background color for disabled JTextField (setEditable(false))?
Following code doesn't work :(
UIManager.getLookAndFeel().getDefaults().
put("TextField.inactiveBackground", Color.BLUE);
Which property I must change for this in UIManager?
--
regards,
zajjar