Select Item opens a URL

I’m new to Webix and have a basic TreeTable page working with Select. My goal that when an item is selected it opens a public URL. I can’t find anything close to this in the docs or examples. Although I’m n to able to get a simple Webix message to open on either!

There is what I have so far:

Hello, @karstyn

To reach opening a public URL when an item is selected you could use any of the next variants:

  1. It’s possible to put a link into Tree Node Templates
    Here is the snippet: Code Snippet
  2. You could use window.open with onItemClick event.
    Here is the snippet:Code Snippet

Thank you AlenaLisava - I’ll play with this to see if I can make it work for my situation. The goal for me is not to have a new window or tab open, but to send an API call ‘behind the scenes’.

Just realized I never gave an update on this. I was able to get my link working based on tweaking your examples. Thank you!