Hi is any one know how I can sort the list in adva...
# advancedpdf
n
Hi is any one know how I can sort the list in advance pdf template?
n
Thanks it work as single coloum but I want to sort 2 Coloum in one loop
d
try following this stackoverflow answer: https://stackoverflow.com/a/75581535/7888975
basically use
?sort_by
twice, but sort by the last sorting field first. So if you wanted to sort by Country then City, you would use
addressSequence?sort_by('city')?sort_by('country')