Hi experts,
I have an webservice that returns a list of objects like this:
Object
- Id
- Name
- someBoolean
- someString
In my project, I’ve created a "Group of Options"provider (BoundPropertiesSelectItemGroupProvider) as source for a dropdown in my view.
My requirement is that when the dropdown value changes, I do some logic based on someBoolean and someString values for selected item on the dropdown. However, the provider just gives me label(Name) and Value (Id) from my source objects. I couldn`t find a way to get any other properties.
How can I accomplish this?
Thanks in advance,
Lucas