Hi Aymen,
Greetings from Syncfusion Support.
We have checked the reported scenario at our end and let you know that the quick info popup will open both on cell and event with type ‘QuickInfo’. We suspect that you want to prevent the quick info on event click and for the same we have shared you a sample, please refer it from the following link.
onPopupOpen(event) {
if (
event.type == 'QuickInfo' &&
event.target.classList.contains('e-appointment')
) {
console.log('QuickInfo');
event.cancel = true;
}
}
Also the popup which opens on event click in responsive mode have the type ‘ViewEventInfo’ and the popup that opens on event tap-hold in responsive mode have the ‘EditEventInfo’ type.
Please let us know if you need any further assistance.
Regards,
Nevitha