Hi all,
I'd like to set it up so that each column in my value table has a different dependency, e.g. column1 is dependent on param1 and column2 is dependent on param2.
Currently, I add as many different things as I want to the dependencies list, but only the first one will be honored.
param5.parameterDependencies = [param0.name, param1.name]
Is it possible to make it so each column can have its own dependency? The attribute is called "parameterDependencies", so I feel like multiple should be allowed, but I can't figure out how.
Thanks!