Skip to content
New issue

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

date ddMM for calendar.getSelectedDates() #73

Open
chungyentsai opened this issue Nov 8, 2019 · 0 comments
Open

date ddMM for calendar.getSelectedDates() #73

chungyentsai opened this issue Nov 8, 2019 · 0 comments

Comments

@chungyentsai
Copy link

chungyentsai commented Nov 8, 2019

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant