Hi Team
Has any developer ever worked on this library, i have installed it and trying to use Calendar Scheduler. Its not loading the URL on the View, page is not found. This what i have at the moment, the View "The page can not be found"
- routes.MapRoute(
- name: "LocalData",
- url: "load-data",
- defaults: new {controller = "Schedule", action = "LocalData", id= UrlParameter.Optional}
- );
- //GET:eNtsaCoourseEvents.
- public partial class ScheduleController:Controller
- {
- public ActionResult LocalData()
- {
- ViewBag.datasource = new ScheduleData().eNtsaCalendarEventsData();
- return View();
- }
- }
- @using Syncfusion.EJ2
- @using Syncfusion.EJ2.Schedule
- @model eNtsaRegistrationTraining.Models.ScheduleData
- @section ControlsSection{
- class="control-section">class="content-wrapper">
- @Html.EJS().Schedule("schedule").Width("100%").Height("650px").EventRendered("onEventRendered").EventSettings(new ScheduleEventSettings {DataSource = ViewBag.datasource}).SelectedDate(new DateTime(2020,10,15)).Render()
- }
Sachin SinghPosted Oct 22, 2020, 7:21 AM
Guest UserPosted Oct 22, 2020, 7:00 AM
Guest UserPosted Oct 22, 2020, 1:21 AM