Copy link to clipboard
Copied
Copy link to clipboard
Copied
If you are trying to assign the query result to any textbox or anyother field while making a combobox selection, you can just try this..
Assign the query result to be populated to the combobox value field using a pipe symbol
<option value="OriginalValue|#marksTest.column#>Texttodisplay</option>
On the onchange of combobox, you can call a js function, split to get the second portion of the value of combobox and assign it to whicever field required.
This will simulate assigning the query result on combo selection