Hi,
Is it possible to concatenate strings to call a propertie.
Something like that
textarea: {
text: '{{=parent.CONCATENATE("out",ASSTRING(@i))}}',
name: 't1',
editable: true,
style: { 'color': "#000000" }
}
I want to assigne to each textarea the propertie out1, out2 etc. based on the index @i
I found a way to make it works using IF statement, but it’s not ideal :
{{=IFERROR(IFS(@i=1,parent."in1",@i=2,parent."in2",@i=3,parent."in3",@i=4,parent."in4",@i=5,parent."in5"), "error")}}
Thanks for your help