I wanted to know if it is possible to dynamically get a specific row from a model by using a UI-Only field that stores the desired row number.
With global merge I can do this - {{$Model.Case.data.75.Age__c}} and that returns the 76th record. What I’d like to know is there a way to replace that 75 with a UI-Only Field merge syntax that stores the row number I want to return.
I tried this: {{$Model.Case.data.{{MyUI-Only}}.Age__c}} but I gave me an error as it doesn’t like the the 2 sets of open braces in a row.