I have a list view form that includes one column, a calculation that resolves i18n keys. The i18n keys are stored in a metadata table. Some keys have embedded 18n keys. I need to sort the results of the calculation by default. Is this possible?
e.g.
lbl.First=‘A’
lbl.Second=‘B’
lbl.Third=‘C’
lbl.Fourth=‘D’
When shown, displays:
A
D ← sorts here because the i18n keys are sorting, not the result
B
C
What I need to display:
A
B
C
D