Hi, I have a client side only datasource that I use as the datasource for a comboboxitem. But I would like to use this as
general lookup data in other parts of the code. How can I access specific data in the datasource - for example in this
sample datasource how can I get the 'desc' value corresponding to a particular id?
general lookup data in other parts of the code. How can I access specific data in the datasource - for example in this
sample datasource how can I get the 'desc' value corresponding to a particular id?
Code:
<List>
<skill>
<id>1</id>
<desc>Accountant</desc>
</skill>
<skill>
<id>2</id>
<desc>Accounting</desc>
</skill>
</List>
Comment