How to remove fields from edit pop-up modal?

I've recently started using the EJ2 Scheduler component for ASP.NET Core and initial trials are going well.

However, the scheduler I want to implement is relatively simple compared to some of the full examples offered by Syncfusion, and I'd like to know if it's possible to remove certain fields from the editor pop-up, specifically, Location and Timezone as these are options that I won't need and may cause confusion with my users.

I've seen tutorials to add fields to the default editor and build a completely custom editor, which feels like a lot of work when I am mostly happy with the layout and functionality provided.

If the custom template is the only option, would it be possible to provide an example with the code required to recreate the default editor, so that I can tweak it to my own needs.

Thanks,

aderrose.

1 Reply

SR Swathi Ravi Syncfusion Team October 10, 2024 10:50 AM UTC

Hi Aderrose,

Thank you for reaching out to us and for sharing your experience with the EJ2 Scheduler component for ASP.NET Core. We're glad to hear that your initial trials are going well!

To address your question, you can easily remove the Location and Timezone fields from the default editor pop-up without needing to create a custom template. You can achieve this by applying the following CSS styles to hide those fields:

<style>
    .e-time-zone-container,
    .e-location-container {
        display: none;
    }
</style>

This will keep the default layout intact while removing the fields you don't need.
Additionally, if you decide to add any custom fields later, you can do so within the default editor. For more information, you can refer to our user guide and demo on how to add custom fields to the editor:
If you have any further questions or need additional assistance, feel free to reach out. We're always here to help and ensure you get the best experience with our components.

Regards,
Swathi

Attachment: coreschedulereditorwindowcustomization_cd172d47.zip

Loader.
Up arrow icon