I have downloaded the demo application, and am trying to modify the EditParty.xml file included in SimpleScreens to also include the Facility name corresponding to the ownerPartyId. I have modified the file accordingly, and it is not working, leaving me with a blank container box. Any help will be greatly appreciated, thank you so much!
<section name="PartyFacilitySection">
<actions>
<entity-find entity-name="mantle.facility.Facility" list="partyFacilityList">
<econdition field-name="ownerPartyId"/></entity-find>
<set field="facilityIds" from="partyFacilityList.facilityId"/>
<set field="facilityNames" from="partyFacilityList.facilityName"/>
</actions>
<widgets>
<container-box>
<box-header><label text="Facilities" type="h5"/></box-header>
<box-toolbar>
</box-toolbar>
<box-body>
<form-list name="FacilitiesForm" list="partyFacilityList">
<row-actions>
<entity-find entity-name="mantle.facility.Facility" list="plantList">
<econdition field-name="ownerPartyId" operator="equals" value="84"/>
<econdition field-name="facilityName"/></entity-find>
</row-actions>
<field name="ownerPartyId"><default-field><hidden/></default-field></field>
<field name="facilityName"><default-field title="Name">
<display-entity entity-name="mantle.facility.Facility"/>
</default-field></field>
<field name="facilityName"><default-field><text-line size="20"/>
</default-field></field>
</form-list>
</box-body>
</container-box>
</widgets>
</section>