I would like to set a filter when entering a page.
As far as I have seen it is possible using this configuration in the destination page:
<facets>
<dataLoadCoordinator auto="true"/>
<urlQueryParameters>
<propertyFilter component="environmentFilter"/>
<pagination component="pagination"/>
</urlQueryParameters>
</facets>
...
<propertyFilter
id="environmentFilter"
property="environment"
operation="EQUAL"
dataLoader="myDl"
labelPosition="TOP"
label="msg://environmentFilter">
<entityComboBox itemsContainer="environmentsDc" metaClass="Environment" width="35em">
...
</entityComboBox>
</propertyFilter>
Unfortunately, I did not find anything about how the URL query parameters have to look like in the browser URL.
How does the URL look like? Is there a helper class to build the URL?