I am working with the latest release 1.3.4 of JDatePicker. How should it be implemented?
I get a compiler error: The constructor JDatePanelImpl(UtilDateModel) is und
Just use properties in the constructor of JDatePanelImpl
JDatePanelImpl
Properties p = new Properties(); p.put("text.today", "Today"); p.put("text.month", "Month"); p.put("text.year", "Year"); JDatePanelImpl datePanel = new JDatePanelImpl(model, p);