Property Binding: Polling Mode

Currently, property binding polling is only time based. Could it be based upon a tag or property change?

For example, I have an sql statement bound to the data property of a table. I only want the table to update when a certain property changes. I do understand that I can do this in a script but it would be cleaner if I could change the property binding.

The SQL property binding will refresh when any property referenced in the SQL statement changes. So you could make an identity statement in the WHERE clause of your SQL statement to refresh this table data:

SELECT value, label 
FROM mytable
WHERE {Root Container.Numeric Text Field.intValue}={Root Container.Numeric Text Field.intValue}

Now, whenever the Numeric Text Field value changes, the SQL statement will refresh its bindings.

I didn’t realize that. Thank you.