I have a problem with PromptSupport (SwingX) and nimbus L&F
I created a JTextField and add a prompt to it by following code.
JTextField textField = new JTextField(20);
PromptSupport.setPrompt("promptText", textField);
The problem is that the prompt show in the textField correctly, but when I type some text to the textField, its background changed to GRAY.
I run the swingx demo, it has the same problem. What I need to do to change the background of textField to WHITE when typing?
Many thanks
