can you use submitField to populate multiselect custom transaction body field?
s
SimonC
08/17/2018, 8:37 AM
you can use setValue and specify an array of select ids in 'value'.
like:
context.newRecord.setValue({
fieldId: 'multi_select_id',
value: [ '12', '13', '14' ]
});