or
Every created appointment, there is gape in Appointment Scheduler slot. It is not show the full color in that appointment slot and it remain some space. It created a lot of problem when we try to manipulate lunch and block time. It created appointment in remaining gape area. It should not occurred this type of gape.
Also, I attached the related file of this problem.
Please help me as soon as possible.
Thanks
Best Regards
Mutum Jiten Singh
Akhil Systems
protected void rsAppointments_OnAppointmentDelete(object sender, AppointmentDeleteEventArgs e) { try { Appointment appToEdit = rsAppointments.PrepareToEdit(e.Appointment, rsAppointments.EditingRecurringSeries); appToEdit.Attributes["IsDeleted"] = "1"; rsAppointments.UpdateAppointment(appToEdit); ScriptManager.RegisterStartupScript(Page, GetType(), "alert", "alert('Appointment deleted successfully');", true); ViewState["Deleted"] = "1"; // upScheduler.Update(); } catch (Exception ex) { string ErrorMessage = ex.Message; SysLog.LogException(ex, MessageTypeEnum.DatabaseException, MessageSeverityEnum.Error); } }