Closed smaske1992 closed 6 years ago
Hi @smaske1992 and sorry for the delay, to clear the selection you can use setFirstSelectedDay
and setLastSelectedDay
methods of AUCalendar
and pass them null
as parameter
and how do we disable dates ?
@kaustubhkadam you can use this methods of ViewInteractor
interface that you've implemented:
boolean hasImplementedSelection();
-> should return true
int setSelected(boolean multipleSelection, DateTime dateSelected);
-> return 0
if the date passed as param should be the first date selected;
-> return 1
if the date passed as param should be the last date selected;
-> return any other number if the date passed as param shouldn't be selected;
How do we clear the selection ?