Hi Ken,
Syncfusion greetings.
We have prepared the below sample to close the quickpopup based on its button click.
footer(props) {
return (<div>
{
props.elementType === 'cell' ?
<div className="e-cell-footer">
<button className="e-event-details" title="Extra Details">Extra Details</button>
<button className="e-event-create" title="Add">Add</button>
<button className="e-event-cancel" onClick={this.onQuickInfoClose.bind(this)} title="Close">Close</button>
</div>
:
<div className="e-event-footer">
<button className="e-event-edit" title="Edit">Edit</button>
<button className="e-event-delete" title="Delete">Delete</button>
<button className="e-event-cancel" onClick={this.onQuickInfoClose.bind(this)} title="Close">Close</button>
</div>
}
</div>
);
}
onQuickInfoClose = () => {
this.scheduleObj.quickPopup.quickPopupClose();
};
Regards,
Karthi