Syntax of the XPath

To select the value of the master input field (relative to the slave 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 masterInputFields element, for example:

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