Having a condition then perform runscript

I am trying to create an if condition before the runscript will be execute. On my case I have two(2) tables and my aim is if there something changed on table 1 or something like property change event then my table 2 will now perform the expression binding. I know it is simple thing if I do it in scripting but in this case I want to try if this would be possible also by using this multiple expression binding feature.

I am trying to do something like this:

if(table1 is changed, runScript(shared.util.executeSomeScript,0), doNothing)

Any advice or suggestions thanks in advance!

You’ll have to do it in the script called by runScript. In the binding system, anything that changes that causes re-evaluation will re-evaluate the entire expression.

1 Like