I am using JdateChooser to take input from the user. I wanted to disable editing options for the textfield that appears except for the backspace. I used the following code
JDateChooser chooser = new JDateChooser();
JTextFieldDateEditor editor = (JTextFieldDateEditor) chooser.getDateEditor();
editor.setEditable(false);
but this disables all the options including the backspace.