Hi there,
I have an array local variable here,
using a!save(local!array[1], true) does not work. any idea what's the problem?
regards,
Lin
Discussion posts and replies are publicly visible
Can you share more of your code performing the save? Is this within a button?
Otherwise the a!save() expression you note above should not have any issues when used within a user interaction.
a!localVariables( local!array: {false,false}, { a!richTextDisplayField( value: a!forEach( items: local!array, expression: { tostring(fv!item), char(13) } ) ), a!buttonArrayLayout( align: "START", buttons: { a!buttonWidget( label: "Save", saveInto: a!save(local!array[1],true) ) } ) } )
it;s just not working when just testing the interface, it seems working once put into the process model.
Thanks,
If you have any further issues, we will need to see the code surrounding the a!save() if possible.