I have created dynamic drop-down using below code. but how to bind drop-down using http API json response also on-change of dropdown need to update table data based on the Id/name value
<Param id="401" trending="false">
<Name>DynamicDependencyLinkSpeed</Name>
<Description>Link Speed</Description>
<Type>read</Type>
<Interprete>
<RawType>other</RawType>
<Type>string</Type>
<LengthType>next param</LengthType>
</Interprete>
<Display>
<RTDisplay>true</RTDisplay>
<Positions>
<Position>
<Page>DisplayManufacturers</Page>
<Column>0</Column>
<Row>2</Row>
</Position>
</Positions>
</Display>
<Measurement>
<Type>string</Type>
</Measurement>
</Param>
<Param id="402" setter="true">
<Name>DynamicDependencyLinkSpeed</Name>
<Description>Link Speed</Description>
<Type>write</Type>
<Interprete>
<RawType>other</RawType>
<Type>string</Type>
<LengthType>next param</LengthType>
</Interprete>
<Display>
<RTDisplay>true</RTDisplay>
</Display>
<Measurement>
<Type>discreet</Type>
<Discreets dependencyId="403" />
</Measurement>
</Param>
<Param id="403" trending="false">
<Name>DynamicDependencyValuesLinkSpeed</Name>
<Description>Dynamic Dependency Values Link Speed</Description>
<Type>read</Type>
<Interprete>
<RawType>other</RawType>
<Type>string</Type>
<LengthType>next param</LengthType>
<DefaultValue>10 Bt Half Duplex;10 Bt Full Duplex;100 Bt Half Duplex;100 Bt Full Duplex</DefaultValue>
</Interprete>
<Display>
<RTDisplay>true</RTDisplay>
</Display>
<Measurement>
<Type>string</Type>
</Measurement>
</Param>
Hi,
Would it be possible to elaborate the question a bit as it is currently not really clear what is trying to be achieved?
-The drop down values are coming from an HTTP json response? In such case, a QAction should trigger on the HTTP response parameter to process the response and fill in parameter 403 with the ';' separated values, which will adapt the drop-down list. Note that the target parameter 401 that was filled in before will not be adapted. Also note that the read parameter is a stand-alone parameter with a page defined, while the write parameter does not have a page. The write parameter 402 should have the same page like the read parameter 401.
-I don't understand the question about updating table data based on the Id/name value. Where is this Id or name located? What table is meant, as there are currently only stand-alone parameters?
Regards,