Refresh property on other view

Hi,
I would like to refresh a property on a (perspective) view that’s currently open.
Is this still possible like in vision?
Yes, How?

Thank you

You need to reference the component the binding is on, and then invoke a Component Method:

self.view.refreshBinding('custom.my_property')
self.getSibling('Table').refreshBinding('props.data')

Try reading up on this functionality here.

1 Like