ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
Integrating the Scheduler from the sample project ( ASP.net Core )
Title:
B
I
{code}
?
I am trying to integrate the scheduler view and create view into my project, but I am running into a weird issue. Nothing is showing in the calendar day/week/month tabs, but data is showing in the agenda tab. Also the create form is showing without the style applied. I copied all the code and views from the sample project. I am using mvc core. Also i don't get any error when viewing the scheduler (no js error, no mvc error). am I missing something? Any help is appreciated
Save Changes
Cancel
Mohamed Elsheihh
asked at 14 Nov 2018
So I found out why the items are not showing ......my json object is lower case where the library expecting upper case (ex: cell.event vs cell.Event). Now the items are showing in the grid however the style is not getting applied, also the edit popup is not showing
at 14 Nov 2018
Mohamed Elsheihh
Adding the .AddJsonOptions(opt => { opt.SerializerSettings.ContractResolver = new DefaultContractResolver(); }); did fix most of all the issues. Now how to fix the style on the delete button. Its not applying the style when showing the events on the scheduler
at 14 Nov 2018
Mohamed Elsheihh
for css you can investigate using chrome dev tools https://developers.google.com/web/tools/chrome-devtools/css/
at 14 Nov 2018
Omu
Answers
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK