I am learning Ofbiz and I find it quiet hard as it's not well documented and there are not a lot of tutorials about it. I'm trying to display information from an entity but only the list titles are showing and the no information is displayed.
<form name="ListProfile" type="list" list-name="listIt"
paginate-target="FeedScreen" default-entity-name=""
separate-columns="true" odd-row-style="alternate-row"
header-row-style="header-row-2"
default-table-style="basic-table
hover-bar">
<actions>
<service service-name="performFind" result-map="result" result-map-list="listIt">
<field-map field-name="inputFields" from-field="parameters"/>
<field-map field-name="entityName" value="Person"/>
<field-map field-name="orderBy" from-field="parameters.sortField"/>
<field-map field-name="viewIndex" from-field="viewIndex"/>
<field-map field-name="viewSize" from-field="viewSize"/>
</service>
</actions>
<field name="userLoginId" title="userLogin"><display-entity entity-name="UserLogin"/></field>
<field name="partyId" title="partyId"><display/></field>
<field name="lastName" title="lastName" sort-field="true"><display/></field>
<field name="birthDate" title="birthDate" sort-field="true"><display/></field>
</form>
I'm wondering also what does the word 'parameters' refer to.