How to show/hide built-in fields

I am using the ASP.NET Core Schedule control in a Razor application. I don't have the need for the isAllDay field to be shown. Is there a way to hide or show specific fields in the FieldModel? If I am unable to hide a field, is it possible to disable it so no entry can be made in the UI?

1 Reply

KK Karthigeyan Krishnamurthi Syncfusion Team January 7, 2019 05:51 AM UTC

Hi Jim 
   
Thank you for contacting Syncfusion support. 
 
Kindly use the below CSS to hide the AllDay field in the Editor window and for the same we have prepared the below sample. 
 
<style> 
    .e-all-day-container { 
        display: none; 
    } 
</style> 
 
Kindly refer the below links to know more about the editor window customization. 
 
Regards, 
Karthigeyan 


Loader.
Up arrow icon