Hi,
I'm trying to implement two entity lists into a single page in crm portals by manipulating the web template. The lists render okay, but i'm having some issue with the drop down lists which display the item actions such as edit, delete. The drop down list renders, and is viewable with the actions in the html source code, however the drop down doesnt display the list.
{% entitylist draft = name:"DraftApplications" %}
{% entityview draftView = logical_name:'civ_communityassetfunds', name:"Draft Applications" %}
Draft Applications ({{draftView.total_records}})
{% include 'entity_list' key: draft.id %}
{% endentityview %}
{% endentitylist %}
{% entitylist submitted = name:"SubmittedApplications"%}
{% entityview submitView = logical_name:'civ_communityassetfunds', name:"Submitted Applications" %} Submitted Applications ({{submitView.total_records}})
{% include 'entity_list' key: submitted.id %}
{% endentityview %}
{% endentitylist %}
Is there something wrong in the way im calling the entity list?
Many thanks,
Sam
*This post is locked for comments