Hi,
Lets assume that I have a trigger, trigger have a input field:
{
key: 'table_id',
label: 'Table',
required: true,
dynamic: 'tableList.id.name'
}
And basically, there is no other field for this trigger, I’m trying to figure out how to pass to the Table resource a value from this trigger, fe:
{ key: ‘value’ }
I’ve tried it like this:
(z: ZObject, bundle: Bundle) => bundle.inputData.key = 'value',
{
key: 'table_id',
label: 'Table',
required: true,
dynamic: 'tableList.id.name'
}
but without luck, operation.perform from table resource had empty bundle.inputData. Also tried computed input field does not hide from user, so this is also not an option to pass value like this.
I need help, thanks in advance for any tips.