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
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