Hello,
I need to change the category of an appointment by the fly without using the dialog. But the ScheduleView will not update visual before switching the view (e.g. switching to next day and return). How can I force an update?
Here my simple code for changing the categories.
I need to change the category of an appointment by the fly without using the dialog. But the ScheduleView will not update visual before switching the view (e.g. switching to next day and return). How can I force an update?
Here my simple code for changing the categories.
foreach
(Appointment app
in
this
.dataModel.Appointments)
{
app.Category = (Category)
this
.myCategoriesHT[
"CategoryID"
];
}