I have 3 radial buttons in my design. I would like for everything to default blank and for the user to be forced to select one. Then based on their selection I will run a function that is relevant to what they selected.
I’ve been looking through a few different threads here and while this one was the most helpful, I’m running into a few challenges.
When the user selects multiple buttons, the others don’t uncheck themselves
I’m struggling to correctly store the checked values in page data.
I think the crux of my confusion is a lack of clear understanding between what checked state logic and disabled state logic actually do.
lack of clear understanding between what checked state logic and disabled state logic
here is the checked state visualisation: Radio1 is checked and Radio2 is unchecked. You can check the Radio2 if you want to:
and when the button is disabled, you can’t even press it, it becomes unavailable:
For your case I advise to use the Radio Buttons Group component, it will handle unchecking the buttons when you check the other one. The selected value could be saved in the On Change Event of the Radio Buttons Group:
After that you can use the radialSelected Page variable elsewhere on page, e.g.
How do you make it so that if there’s like 10 radial buttons in a linear column, make that its possible to choose more than one so I don’t have to complain twice and why the functionality is not automatically built in on chrome and or edge browser?
How do you make it so that if there’s like 10 radia…
Use checkboxes for this purpose.
is not automatically built in on chrome and or edge browser?
Please, create a separate topic, if this question is Backendless-related. And describe more precisely, because for me isn’t clear which functionality should be built in and where.