Trigger namedquery on other object

Hi,

I am working on a perspective projet which is an log of shutdown times for different areas.
Think of it like a 3 by x table where X is the number of different areas which have shutdown minutes.
Visible is the current hour, the previous and the next.

I am using a multi state button to switch/scroll through the hours.

All inputs are saved into an sql databese via namequery.

Now users should be able to scroll through the hours and then read and maybe edit some values. For now I can only save data for the current hour.

What I am missing now is a way to trigger a namedquery as soon as the user is scrolling back to read those inputs.

On the button's onActionPerformed event use system.perspective.sendMessage | Ignition User Manual to wake up a message handler on the table. Have the message handler script run the line,
self.refreshBinding("props.data")

Thanks for the answer, it did help to some extend.

It wasnt 100% working so I made a small test field, where I now have a Multi-State-Button and a label where the text should change onActionPerformed. I can see that there is a delay or sometimes not even updating.

Is there a limitation like minimum time between messages?