GoXuni / Legacy-Xuni-Xamarin.Forms

These samples show how to use all features of Xuni in Xamarin.Forms.
14 stars 12 forks source link

problem on calendar #5

Open PlusInf0Iulia opened 8 years ago

PlusInf0Iulia commented 8 years ago

Hello everyone. i've start my project from the example calendar with customize content in day. When i call calendar.refresh() and then i set the selecteddate the calendar don't set the graphic for the selected date. what do i do wrong? this is my method: public void refreshCalendar() { calendar.Refresh(); }

public void setDateAndRefresh(DateTime data) { calendar.SelectedDate = data; populateListOfActions(); //method that populate the list of actions by selected date UpdateMonthLabel(); //method that write the month name }

When the binding don't recognize change the selected is enabled but when there is a change the selection there isn't visible. I call first refreshCalendar and then setDateandRefresh. please help me thank you