Avatar

Correct answer by
Level 4

Do you want to select multiple Providers per Object or only one?

You can specify a schema for your input component and have forms that are not technically linked with anything. This is an example from nms:delivery:

          <input img="nms:deliveryOutline.png" label="Select a delivery outline..."

                 nolabel="true" prebuildSubForm="false" type="subFormLink" xpath="deliveryOutline">

            <form label="Select a delivery outline" nothingToSave="true">

              <input img="nms:deliveryOutline.png" monoSelection="true" schema="nms:deliveryOutline"

                     toolbarCaption="List of delivery outlines" type="linkListChoice"

                     xpath="." xpathOut="/ignored/deliveryOutlineList">

                <input xpath="[.]"/>

                <sysFilter>

                  <condition expr="[@operation-id]=$(../@operation-id)"/>

                  <condition>

                    <condition boolOperator="OR" expr="@messageType=$(../@messageType)"/>

                    <condition expr="@messageType=127"/>

                  </condition>

                </sysFilter>

              </input>

              <leave>

                <set expr="[/ignored/deliveryOutlineList/deliveryOutline/@id]" xpath="@id"/>

                <set expr="[/ignored/deliveryOutlineList/deliveryOutline/@_cs]" xpath="@_cs"/>

                <set expr="[/ignored/deliveryOutlineList/deliveryOutline/@id]" xpath="../@deliveryOutline-id"/>

              </leave>

            </form>

          </input>

        </container>

is this what you searching?

View solution in original post