hey guys.
having a few issues with the latest sfschedule control.
1) if you use multiple styles ie. dayviewsettings,weekviewsettings etc and switch the view between week/day/month/week etc the other styles get overlayed on some of the week items so you end up with multiple styles of the same text on the week item (this is a bug but ive got round it by resetting all the other styles on a view change).
Main issues I have:I'm replacing the views on the day and inline month items.
Day view issue: ( this was fine in the older version of the control ie. 14.0.20).
- I replace the view with a custom view in the -> event -> _OnAppointmentLoadedEvent(object sender, AppointmentLoadedEventArgs e)
-> e.view = new DayViewLayout { BindingContext = e.appointment };
And this shows up fine BUT on the event -> CellTapped
the appointment is always null. schedTapped(object sender, CellTappedEventArgs args)
{
var selectedAppointment = args.Appointment as ScheduleAppointment; // ALWAYS NULL FOR DAY WITH CUSTOM VIEW
}
replacing the week and month views passes back an appointment that is not null. Older version this worked fine.
Second issues is with the monthly inline events. I've create a custom view and replace the inline view but the new view is double the
height of a default inline appointment and the view size doesnt expand to accomodate the new custom view size so the view overlap.
im using version 15.3.0.29 within xamarin forms and currently testing on the latest xamarin IOS release.