How to hide default fields in standard appointment window?
This knowledge base article explains the way to hide the default fields in standard appointment window.
Step 1: Create a default schedule by referring the instructions given in the below UG link.
https://help.syncfusion.com/js/schedule/getting-started
And define the appointmentWindowOpen event as shown in the following code example.
$("#Schedule1").ejSchedule({
width: "100%",
height: "525px",
currentDate: new Date(2017, 5, 5),
appointmentSettings: {
dataSource: dManager,
id: "Id",
subject: "Subject",
startTime: "StartTime",
endTime: "EndTime",
description: "Description",
allDay: "AllDay",
recurrence: "Recurrence",
recurrenceRule: "RecurrenceRule"
},
appointmentWindowOpen: "OnAppointmentWindowOpen",
});
Step 2: Within the appointmentWindowOpen scheduler event, default fields like Subject, All-day and Recurrence can be hidden as shown in the following code example.
function OnAppointmentWindowOpen(args) {
if (!ej.isNullOrUndefined(args.appointment)) {
this._appointmentAddWindow.find("." + this._id + "subjecttr").css("display", "none");
this._appointmentAddWindow.find("." + this._id + "parrow").css("display", "none");
} else {
this._appointmentAddWindow.find("." + this._id + "subjecttr").css("display", "");
this._appointmentAddWindow.find("." + this._id + "parrow").css("display", "");
}
}
Step 3: Run the sample and default fields like Subject, All-day and Recurrence will be hidden in the detailed window only when it is opened by double clicking the appointments but not by cell as shown below.

Figure 1: Standard window with default field hidden.
Sample: https://ej2.syncfusion.com/home/index.html#platform
To hide the default fields like Subject, All-day and Recurrence in the detailed window even when it is opened by double clicking the cell, if statement with in appointmentWindowOpen scheduler event can be removed
I hope you enjoyed learning about how to hide default fields in standard appointment window.
You can refer to our JavaScript Scheduler feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our JavaScript Scheduler example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!