I want the users to select among a list, one or more items.
I have tried to use a multi checkbox field, but what is stored in the dataset is a string with all the values selected.
I have tried to use different radio buttons , what values do they have when checked ? Totally new to velo, please help. If their is a way of not using velo, that would be great... Thanks
Radio-Buttons normaly habe just 1-choice out if multiple.
You will surely need a Check-Box-Group, where you will be able to select several values by checking related checkboxes.
let chbValue = ["AAA", "BBB", "CCC"]
chbValue[0] ---> "AAA"
chbValue[1] ---> "BBB"
chbValue[2] ---> "CCC"