How to retrieve the url of a server connect element

@patrick et al. Within a component, how do I retrieve attributes of existing page elements?

For example, how can I retrieve the url of a server connect by it’s id? I can get to the element this.get('load_data') , but cannot figure out how to get the url.

Bump.

Try with:

document.getElementById(id).dmxComponent.props

1 Like

I knew there would be something simple.

Thanks Jon!

1 Like

document.getElementById(id).dmxComponent.props It works for me