Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a project in Java using netbeans IDE and I need to disable a particular JButton. I use the following code for that.

IssuBtn.setEnabled(false);

But after it is disabled it doesn't show the text on the JButton. How can I keep that text on the JButton?

share|improve this question
2  
setEnabled(false) do not remove text from button you must have some other bug in your code. – Harry Joy Oct 3 '11 at 4:43
2  
Could you please post SSCCE (sscce.org) as this is something unusual. Thanks – Owl Oct 3 '11 at 4:43
5  
Typically the text is still there, albeit greyed out with different shading. Are you sure that's not the case? If so, what look and feel are you using, or if you're using the standard, what operating system and window manager are you using? – Mark Peters Oct 3 '11 at 4:44
To Harry Joy. But when I do that it removes the text it doesn't show any bug on the project as well. – SL_User Oct 3 '11 at 4:45
6  
Post SSCCE that reflects the same behavior. – Harry Joy Oct 3 '11 at 4:48
show 2 more comments

1 Answer

up vote 10 down vote accepted

This experiment suggests one answer is 'Use a PLAF that is not Metal'.

Look Of Disabled Buttons

import java.awt.*;
import javax.swing.*;

class LookOfDisabledButton {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JPanel gui = new JPanel(new BorderLayout(3,3));
                JPanel pEnabled = new JPanel(new GridLayout(1,0,2,2));
                pEnabled.setBackground(Color.green);
                gui.add(pEnabled, BorderLayout.NORTH);

                JPanel pDisabled = new JPanel(new GridLayout(1,0,2,2));
                pDisabled.setBackground(Color.red);
                gui.add(pDisabled, BorderLayout.SOUTH);

                UIManager.LookAndFeelInfo[] plafs = 
                    UIManager.getInstalledLookAndFeels();
                for (UIManager.LookAndFeelInfo plafInfo : plafs) {
                    try {
                        UIManager.setLookAndFeel(plafInfo.getClassName());
                        JButton bEnabled = new JButton(plafInfo.getName());
                        pEnabled.add(bEnabled);
                        JButton bDisabled = new JButton(plafInfo.getName());
                        bDisabled.setEnabled(false);
                        pDisabled.add(bDisabled);
                    } catch(Exception e) {
                        e.printStackTrace();
                    }
                }

                JOptionPane.showMessageDialog(null, gui);
            }
        });
    }
}

Alternately, adjust the values in the UIManager.

UIManager tweak

import java.awt.*;
import javax.swing.*;

class LookOfDisabledButton {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JPanel gui = new JPanel(new BorderLayout(3,3));
                JPanel pEnabled = new JPanel(new GridLayout(1,0,2,2));
                pEnabled.setBackground(Color.green);
                gui.add(pEnabled, BorderLayout.NORTH);

                JPanel pDisabled = new JPanel(new GridLayout(1,0,2,2));
                pDisabled.setBackground(Color.red);
                gui.add(pDisabled, BorderLayout.SOUTH);

                // tweak the Color of the Metal disabled button
                UIManager.put("Button.disabledText", new Color(40,40,255));

                UIManager.LookAndFeelInfo[] plafs = 
                    UIManager.getInstalledLookAndFeels();
                for (UIManager.LookAndFeelInfo plafInfo : plafs) {
                    try {
                        UIManager.setLookAndFeel(plafInfo.getClassName());
                        JButton bEnabled = new JButton(plafInfo.getName());
                        pEnabled.add(bEnabled);
                        JButton bDisabled = new JButton(plafInfo.getName());
                        bDisabled.setEnabled(false);
                        pDisabled.add(bDisabled);
                    } catch(Exception e) {
                        e.printStackTrace();
                    }
                }

                JOptionPane.showMessageDialog(null, gui);
            }
        });
    }
}

As pointed out by kleopatra..

it's not a solution but might be a pointer to the direction to search for a solution

Where 'it' is my answer. In fact, I suspect she hit upon the real cause with the comment:

guessing only: here it's due to violating the one-plaf-only rule.

I second that guess.

share|improve this answer
actually, no (though I upvoted before checking, and now cant remove it :-) - it looks more like an artefact from that incomplete (?) plaf setting. As you see, even the enabled button looks wrong. To be concrete: if I run the example as-is, I see the same as the screenshot. If I change it to only set metal (2 buttons only) all looks like expected – kleopatra Oct 3 '11 at 10:56
@kleopatra I see what you mean (it was a rather unexpected result). (scratches head) Any idea on why it behaves that way? As to the actual question, I suppose it comes back to the good advice of SkeetOverFlow - the OP should post an SSCCE. – Andrew Thompson Oct 3 '11 at 11:08
no clear idea as to the why - guessing only: here it's due to violiting the one-plaf-only rule. It's erratic, though: add the metal button as last and all is well. Good thing of this example is that the OPs effect can be reproduced, so up again :-) – kleopatra Oct 3 '11 at 11:28
you might want to edit the answer to emphasize the fact that it's not a solution but might be a pointer to the direction to search for a solution :-) – kleopatra Oct 3 '11 at 11:45
Done. Hope you don't mind that I pilfered your exact words, but I couldn't think of a better way to express it. – Andrew Thompson Oct 3 '11 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.