Hi I have a DB and one of the colum is defined as an array. My Rest service has all the values to represent the info in a collapsable set, and display correctly all Items. I embebed a checkbox control, where I need to show the options of the item, that are stored in the colum as an array.
How can I tell to this control that it have to take the array, and populate all the items of the array as options and not as string
This is what I want to do it
+Item 1
+Item 2
x option 1
x option 2
x option 3
But I have
+Item1
+Item2
x Option1, Option 2, Option 3 (The array is considered as string)
Thank you