Hi all
I have a collection of Strings. I want my properties to have the values in the collection and my labelProperties to be a substring of the values in the collection.
For example:
Assuming the following is my collection of values:
list = {"C1203", "C1345", "C1456"}
I want to create something like:
<select name="item">
<option value="C1203">203</option>
<option value="C1345">345</option>
<option value="C1456">456</option>
</select>
Basically I am eliminating the first two characters of the value in my labels. How can I achive this using html:select and html
ptions?
Thank you,
Payam.