I have an OData model machine>/config and a json model runDialog.
I want to show the entires of machine>/config in a table where machine ID equals the ID of the JSON model of runDialog field machineID:
<Table id="tableMachineConfig"
items="{path:'machine>/config', filters: [{path: 'machine>id', operator: 'EQ', value1:
'{runDialog>/machineID}'}], sorter: {path: 'machine>type'}}">
I tried different things for value1:
value1: '{runDialog>/machineID}'
value1: {runDialog>/machineID}
value1: {path: 'runDialog>/machineID'}
value1: '{path: 'runDialog>/machineID'}'
value1: 'runDialog>/machineID'
Nothing seems to work.Filter value1 does not contains the machine ID but the textual representation of the text set in the xml.