Does anyone have any experience with EntityLists and adding additional, calculated columns?
For example:
EntityA has an EntityForm for Create/Edit. It has a field that is a lookup field (parent) to EntityB. When the lookup appears, I want to create a sortable, additional, column that is the sum of EntityA.NumberField and EntityB.NumberField.
I've been researching entitylists and liquid templates. It looks like it might be possible, with exception to the sorting:
<a href="{{ request.path_and_query | add_query:'order', c.sort_descending }}"> {{ c.name }} <i class="fa fa-sort-asc"></i>
{{ request.path_and_query | add_query:'order', c.sort_descending }} looks easy enough to replicate. Or am I missing something?
Can anyone provide any insight?
Thank you!
*This post is locked for comments