Hello,
I have an Interactive report with rows having click event (It highlights the row and add few attributes to the apex collection) handled using Dynamic Action.
The rows also have a cell with an hyperlink (<a> tag) with click event which opens a modal page.
Now the issue is, when i click on the hyperlink(<a> tag) of the cell in the row it bubbles out to the row level (<td>) click event and performs both actions.
How do i stop the propagation of the bubbling phase on click of the hyperlink (<a> tag) to the row level click event.
i created a Dynamic action on click of the hyperlink (<a> tag) and added event.stoppropagation() with no result.