Hi,
How can I get the Value from an Item in the Multiselect field using JavaScript
data in multi-select field :
Item Value
----- --------------
Pear 1000000001
Orange 1000000002
Apple 1000000000
So now I want to get the value for Pear = 100000001
logic: Get (Value) where Item = Pear
There may be up to 30 items in my list to go through
The .getValue returns all values separated by a comma --> 100000000, 100000001, 100000002
The .getText returns all texts separated by a comma --> Apple, Pear, Orange
Any help is greatly appreciated.
*This post is locked for comments