Hi Ashley,
Greetings from Syncfusion support.
We have checked your reported issue “”how to programmatically close the quickpopup” and Scheduler provided support to programmatically close the quickpopup using CloseQuickInfoPopup public method. Refer the below code for that.
|
<SfButton OnClick="Click">Click</SfButton>
<br />
<SfSchedule @ref="ScheduleObj" TValue="AppointmentData" Height="650px" SelectedDate="@(new DateTime(2020, 2, 14))">
<ScheduleEventSettings DataSource="@DataSource"></ScheduleEventSettings>
</SfSchedule>
@code{
public void Click()
{
ScheduleObj.CloseQuickInfoPopup(); // To programmatically close the quick popup
}
...
} |
The above sample can be get by the following link
Please get back to us, if you need further assistance.
Regards
Alagumeena.K