Reputation: 1416
I am using a JDateChooser. How do I disable editing option on the text field that appears? It canot be change.
JDateChooser chooser = new JDateChooser();
chooser.disable();
Upvotes: 0
Views: 53
Reputation: 418
Try that.
JDateChooser chooser = new JDateChooser();
chooser.setEnabled(false);
Upvotes: 1