We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello, first, thanks for sharing a calendar date picker, this help me a lot
my code is
public DobleList getSelectedDates() { DobleList list= new DobleList (); for (MonthCellDescriptor cal : selectedCells) { if (!highlightedCells.contains(cal) && !deactivatedDates.contains(cal.getDate().getDay() + 1)) list.insert(String.valueOf(cal.getDate())); } return list; }
this return me Tue Oct 08 00:00:00 GMT 2019 and i only need Oct 08 in data format (ddMM) 0810
where can i found it to change the format? or thit cant be changed
thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello, first, thanks for sharing a calendar date picker, this help me a lot
my code is
this return me
Tue Oct 08 00:00:00 GMT 2019
and i only need Oct 08 in data format (ddMM) 0810
where can i found it to change the format? or thit cant be changed
thank you
The text was updated successfully, but these errors were encountered: