I need help with the schedule, I am trying to disable the scroll bar and it does not work for me
Thanks for the help, in my project I don't define height property and anyway the scrollbar continue rendering. The schedule is defined as follows:
Html.EJ().Schedule("Schedule")
.AppointmentTemplateId("#apptemplate")
.ShowQuickWindow(false)
.CurrentDate(DateTime.Now)
.ShowAllDayRow(false)
.IsResponsive(true)
.ContextMenuSettings(cm => cm.Enable(true)
.MenuItems(m => m.Cells(cellsItems)))
.CategorizeSettings(field => field.Datasource(CategorizeValue)
.Enable(true)
.Id("Id").Text("Text").Color("Color").FontColor("FontColor"))
.AppointmentSettings(fields => fields.Datasource(scheduleDataSource)
.Id("Id")
.Subject("Subject")
.Description("Description")
.StartTime("StartTime")
.EndTime("EndTime")
.AllDay("AllDay")
.Recurrence("Recurrence")
.RecurrenceRule("RecurrenceRule")
.Categorize("Categorize"))
.ScheduleClientSideEvents(e => e.ResizeStop("onResizeStop"))
.ScheduleClientSideEvents(e => e.DragStop("onDragStop"))
.ScheduleClientSideEvents(e => e.Navigation("onNavigation"))
.ScheduleClientSideEvents(e => e.MenuItemClick("onMenuItem"))
.ScheduleClientSideEvents(e => e.CellDoubleClick("onDoubleClick"))
.Render();