I have defined a TypedList including 2 properties Amount and Currency.
Now I'd like create a custom property that concatenates both properties, something like:
name: AmountWithCurrency
value: Amount + " " + Currency
Can I reference another properties in the custom property value?
Am I going to end up with a simple string value "Amount Currency" instead of the real values of those properties?
Is there a way to achieve that with TypedLists?
Regards,
Tino