I want to ask some questions about jxdatepicker:
(1) I write the following code to change the date format:
public test(){
SimpleDateFormat dateFormat = new SimpleDateFormat("YYYY-MM-dd");
jxDatePicker1.setFormats(dateFormat);
}
When I run my gui, the datepicker is show today date (2015-03-03) but when I click yesterday date, it goes to another date (2015-12-28) not the yesterday date. What happened to my code?
(2) How to change the header title color?
(3) How to change the color of the selected date?