Reputation: 323
I need to display a context menu when a user right clicks on a report and the user can perform an action on the rows selected. How to achieve this?
I can see there is already an action button on top of an interactive report. Can we customize that?
Upvotes: 1
Views: 3270
Reputation: 421
If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.
I'm just a user, not a shill or employee...
Upvotes: 0
Reputation: 15094
There's no built in way to do this. I see a few options:
mousedown
on your report, then some Javascript to handle the action.Upvotes: 2