Is it possible to refresh a binding on a custom session prop?
I’ve tried using .refreshBinding
via a button but it didn’t work. Wondering now if it’s even possible
i’ve tried:
self.session.custom.refreshBinding('Parameter')
and
self.refreshBinding('session.custom.Parameter')
and
self.refreshBinding('self.session.custom.Parameter')
Which resulted in different errors:
- ‘com.inductiveautomation.perspective.gateway.script’ object has no attribute ‘refreshBinding’
- Invalid property key - no scope defined: session.custom.Parameter
- Invalid property key - no scope defined: self.session.custom.Parameter
Has anyone successfully done this?