Unplanned
Last Updated: 18 May 2020 18:39 by ADMIN
Daniel
Created on: 18 May 2020 18:31
Category: Scheduler
Type: Feature Request
3
Modify model field values in Edit event

I would like to be able to change the appointment model in the OnEdit handler for the user, something like:

  void EditAppointment(SchedulerEditEventArgs args)
    {
        var appt = (Appointment)args.Item;
        appt.Title = FixMyTitle(appt.Title);
    }

  string FixMyTitle(string title) { return "something changed"; }

0 comments