You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use the result of a SceneDataTransformer and set it as the possible values of a CustomVariable. How should I approach this? Right now I have:
Variable q with query ""
SceneQueryRunner x with the raw data query.
SceneDataTransformer y with its $data property set to x
activationHandler on y that subscribes to y state. In the subscription handler I then call q.setState({query: yResult}). This unfortunately does not work. As the scene does not make use of the result. The subscription handler is called and I can print the result in the console.
The text was updated successfully, but these errors were encountered:
Hello,
I want to use the result of a SceneDataTransformer and set it as the possible values of a CustomVariable. How should I approach this? Right now I have:
q
with query ""x
with the raw data query.y
with its$data
property set tox
y
that subscribes toy
state. In the subscription handler I then callq.setState({query: yResult})
. This unfortunately does not work. As the scene does not make use of the result. The subscription handler is called and I can print the result in the console.The text was updated successfully, but these errors were encountered: