Hello PowerPage experts,
I have a list component added to my power page. The list component uses a dataverse view. I would further want to filter the results displayed in the list view when the page loads. I don't want to use normal/conventional filters on the list because my use case is different as I will be using a dynamic id value. Assuming my id is as below, can this done by changing the page html using liquid? Am I on the right path?
<div class="row sectionBlockLayout text-left" style="display: flex; flex-wrap: wrap; margin: 0px; min-height: auto; padding: 8px;">
<div class="container" style="padding: 0px; display: flex; flex-wrap: wrap;"><div class="col-md-12 columnBlockLayout" style="flex-grow: 1; display: flex; flex-direction: column; min-width: 300px;">
{% assign view = site.data.entity_views['Active Notes'] %}
{% assign filteredRecords = view.records | where: 'NoteID', '27540' %}
{% include 'entity_list' key: 'Active Notes', records: filteredRecords %}
</div></div>
</div>