On Right Click Event

Hi team,

I was wondering if it was possible to add an event in the instance of a right mouse click, as opposed to left?

Thank you!
Sophie

Hi @Sophie_Turner,

Unfortunately, there is no such possibility, now it is possible to do this only for the left click.

Regards
Nazar

Hi @Nazar_Dmytryshyn

Can you confirm if this is on the roadmap for implementation? If it is is there a rough implementation date?

Thanks

Jason

Hello @Jason_Saridis,

Unfortunately, adding such functionality is not currently in our roadmap.

Regards,
Alexander

Should be doable with some custom javascript code, like:

window.addEventListener('contextmenu', (ev) => {
  ev.preventDefault();
  console.log('right clicked')
});

If you want to expose this event to the backendless non-code world, you need to include the above coding into a custom UI component exposing this event.

Regards

@Klaas_Klever awesome, will have a go with that instead.