We are trying to use the mobiscroll cell click events like:
const options: MbscEventcalendarOptions = {
// other options
onCellClick: (args: MbscCellClickEvent, inst: EventcalendarBase) => {
// show a custom toast with additional information about the cell/event.
},
onCellRightClick: (args: MbscCellClickEvent, inst: EventcalendarBase) => {
// open a custom context menu popup with actions for the cell/event.
},
};
I’ve omitted the code for the actual cell click handlers for simplicity.
Both onCellClick and onCellRightClick events work on desktop and on Android.
On iPhone only the onCellClick works, but the onCellRightClick not unfortunately.