Madhuka Dilhan
Madhuka Dilhan

Reputation: 1416

How to disable jDaychooser

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

Answers (1)

Umair Ansari
Umair Ansari

Reputation: 418

Try that.

JDateChooser chooser = new JDateChooser();
chooser.setEnabled(false);

Upvotes: 1

Related Questions