Remote Data not allow to create a schedule

Hi Team
I need some help, my schedule works fine, but i cant seem to create any schedule. Can any develop can help me on this regard? I will share my code
@{
ViewBag.Title = "Scheduler-Meetings";
}
@using Syncfusion.EJ2
@Html.EJS().Schedule("schedule").Width("100%").Height("650px").EventSettings(es=>es.DataSource(DataManager=>
{
DataManager.Url("https://js.syncfusion.com/demos/ejservices/api/Schedule/LoadData").
CrossDomain(true).
Adaptor("WebApiAdaptor");
})).Readonly(true).SelectedDate(new DateTime(2020, 11, 05)).Render()
// GET: Scheduler-Calendor.
public ActionResult RemoteData()
{
return View();
}

3 Replies 1 reply marked as answer

NR Nevitha Ravi Syncfusion Team November 9, 2020 12:39 PM UTC

Hi Gcobani, 

Greetings from Syncfusion Support. 

In the shared code, you have set the Readonly property to true which is the cause for the reported problem. We have prepared a CRUD scheduler sample for your reference which can be downloaded from the following link. 

Please try the above sample and get back to us if you need any further assistance. 

Regards, 
Nevitha  



GC Gcobani November 9, 2020 12:59 PM UTC

Hi Team

Is there another sample that is off better than this one? this one does not have any View, just want to modify what i have already so it can create a schedule and save it only.


RV Ravikumar Venkatesan Syncfusion Team November 10, 2020 08:01 AM UTC

Hi Gcobani, 

Thanks for the update. 

We have validated your reported query at our end. We have added the Schedule in our previously shared sample which can be downloaded form the following link. 


Kindly try the above sample and get back to us if you need any further assistance. 

Regards, 
Ravikumar Venkatesan 


Marked as answer
Loader.
Up arrow icon