blob: 487ea451b359a2144ef39bab84c0d348b3e8690a [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd">
<screen name="LookupParty">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupParty}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/>
<!-- entries needed for lookup ajax auto completer -->
<!-- required: entity to search in -->
<set field="entityName" value="PartyNameView"/>
<!-- required: fields to search a match -->
<!-- the first element from searchFields is returned after user selection -->
<!-- it might be hidden based on widget.autocompleter.displayReturnField property in widget.properties -->
<set field="searchFields" value="[partyId, firstName, middleName, lastName, groupName]"/>
<!-- when set Y the auto-completer will search value using "fieldValue%"(statrWith operation)-->
<!-- the default behavior is "%fieldValue%" (contains operation) -->
<set field="searchType" value="STARTS_WITH"/>
<!-- optional: fields to display in the given order, default is searchFields -->
<set field="displayFields" value="[firstName, lastName, groupName]"/>
<!-- optional: additional entity condition (named andCondition) added to search query -->
<script location="component://party/webapp/partymgr/WEB-INF/actions/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="lookupPartyName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="listLookupPartyName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPartyByName">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="ExampleUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyByName}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/>
<!-- entries needed for lookup ajax auto completer -->
<!-- required: entity to search in -->
<set field="entityName" value="PartyNameView"/>
<!-- required: fields to search a match -->
<!-- the first element from searchFields is returned after user selection -->
<!-- it might be hidden based on widget.autocompleter.displayReturnField property in widget.properties -->
<set field="searchFields" value="[partyId, firstName, middleName, lastName, groupName]"/>
<!-- optional: fields to display in the given order, default is searchFields -->
<set field="displayFields" value="[firstName, lastName, groupName]"/>
<!-- optional: additional entity condition (named andCondition) added to search query -->
<script location="component://party/webapp/partymgr/WEB-INF/actions/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="lookupPartyNameByName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="listLookupPartyNameByName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPersonByNameExamplePopup">
<section>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyPerson}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/>
<!-- entries needed for lookup ajax auto completer -->
<!-- required: entity to search in -->
<set field="entityName" value="PartyNameView"/>
<!-- required: fields to search a match -->
<set field="searchFields" value="[partyId, firstName, middleName, lastName]"/>
<!-- optional: field to return after user selection, default is first element of searchFields -->
<!-- return field might be hidden based on widget.autocompleter.displayReturnField property in widget.properties -->
<set field="returnField" value="partyId"/>
<!-- optional: fields to display, default are searchFields -->
<set field="displayFields" value="[firstName, lastName]"/>
</actions>
<widgets>
<decorator-screen name="LookupLayerPopupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="lookupPersonByName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="listLookupPersonByName" location="component://example/widget/example/FormWidgetExampleLookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>