This might be a simple question, but I'm having a difficult time trying to create an anchor tag within a Visualize report. I've tried creating a Custom Widget Editor where the location for the anchor has...
<div id="anchor"></div>
...and the link to the anchor is in another Custom Widget Editor where...
<a href="
#anchor">link</a>
...but that doesn't seem to work. Can someone please give me a suggestion what I need to do in MCI to make a simple anchor tag work in a report?
@Brian Smith Anchor links (#anchor
) don’t work in MCI Visualize reports
Reason:
Reports render widgets in isolated containers (iframes/shadow DOM) → no shared page scroll context
Workaround:
Use separate widgets with navigation (buttons/filters)
Or build a custom external page/dashboard if anchor behavior is required
Thanks
Manoj