I have multiple values linked to a single field as shown in the image and want to show both.
I tried:
item = items.array[name] + items.array[quantity];
return item;
I also tried:
item = name + quantity;
return item;
The tried:
item = value[0] + value[1]
return item;
Or:
item = value[name] + value[quantity]
return item
but I obtain the quantity only.
How do I get to name and quantity values in the editor ?
thanks