Syntax of the XPath

To select the value of the primary input field (relative to the secondary input field) in the Details or Premiums row, use this format:

ancestor::tr/td[@data-field='value']/input

For example, to select the value of the Team lookup in the Details row, use this XPath:

ancestor::tr/td[@data-field='WBT_NAME']/input

Similarly, to select the value of the Team lookup in the Premiums row, use this XPath:

ancestor::tr/td[@data-field='PREM_WBT_NAME']/input

In the SQL expression, the XPath is specified in the primaryInputFields element, for example:

primaryInputFields='[ancestor::tr/td[@data-field=\'WBT_NAME\']/input]'
Note: For XPath to work, both the primary input field and the secondary input field must be displayed on the page (cannot be hidden).