I need to select multiple days per month, not between months, but some days next to each other within the same month in the Scheduler component. But i need it in the view type TimelineYear
I checked the demos, and its possible to select several days in this timeline:
Timeline Day
Timeline Week
Timeline WorkWeeks
Timeline Month
You can try this behaviour in the demos.
My app:
My code:
@(Html.EJS().Schedule("schedule").CssClass("year-view").Height("100%").Width("100%")//.CellTemplate("#apptemplate") .AllowMultiCellSelection(true) .AllowMultiRowSelection(false) .Views(view => { view.Option(View.TimelineYear).AllowVirtualScrolling(false).DisplayName("Horizontal Timeline Year").IsSelected(true).Add(); }) .Render() ) |
|