Visualization-related updates

We now render hyperlinks by interpreting any string that starts with http/https as a URL. A tooltip displaying the platform’s response to clicks accompanies these hyperlinks.

URL-renderer

Additionally, we’ve introduced various link-click behaviors, allowing users to choose between “Open in new tab,” “Open in context panel,” or a “Custom” option by defining the “.linkClickBehavior” column tag accordingly. To implement custom behavior, subscribe to the link-click event using the following code:
grok.events.onLinkClicked.subscribe(eventData => grok.shell.info(eventData.args.link));

2 Likes