I'm using a form to display the output document we send to customers. Some of the products have serial numbers and some do not have serial numbers, so when we enter the line items on a form, perhaps 10 items, only 5 of them will have serial numbers. When this displays on the form, it bumps all 5 serial numbers to display in rows 1-5 of the table, even though they might be for line item 1,3,4,6 and 10. Below is the XML schema for the serial number field, as I'm hoping there is something simple that I am forgetting.
Â
<field minH="4.282mm" name="colSerialNumber_4WBK44MW54WDAT7CJDFSCMSH0_35495" w="24.594mm">
                       <ui>
                          <textEdit multiLine="1">
                             <border presence="hidden"/>
                             <margin/>
                          </textEdit>
                       </ui>
                       <font size="9pt" typeface="Arial"/>
                       <margin bottomInset="1mm" leftInset="1mm" rightInset="1mm" topInset="1mm"/>
                       <border>
                          <edge thickness="0.18mm">
                             <color value="91,91,91"/>
                          </edge>
                          <corner thickness="0.18mm">
                             <color value="91,91,91"/>
                          </corner>
                       </border>
                       <bind match="dataRef" ref="$.ServiceOrder.Item[*].SerialNumber_4WBK44MW54WDAT7CJDFSCMSH0"/>
                       <assist>
                          <speak disable="1"/>
                       </assist>
                       <validate nullTest="error"/>
                    </field>
Â
Any help would be appreciated.