{
"type": "input_dummy",
"name": "actor_drop_down",
},
So there is no drop down menu there. It is generated during runtime and I can find it with
block_withDDMenu.getInput('actor_drop_down')
But somehow this is different from when it is defined with
"type": "field_dropdown",
"name": "EXAMPLE",
"options": [
[
...
]
During runtime, every time an actor is added, removed or changed, this menu is created and updated in the blocks needing this information.
How can I access this "actor_drop_down" structure in a code generator of a block that has such a dynamic list of actors? The method
block_withDDMenu.getFieldValue('actor_drop_down')
only returns null (since I think it is not properly defined in JSON)?
Do you need more information?
Best regards and thanks
Barbara