Hi ,
I need to config a large number of elememen dynamically with a script in a radios group, and i need too add a scrol bar.
how to align a large elements of radios group, with newline for each element (I tested a vertical-align: middle; but it doesn't work) , and how to add a barre scroll if the number of elements is large.
- Add a Flex Container and set it to column. I set the PROPS to,
direction : column
wrap : nowrap
justify : flex-start
alignItems : flex-start
alignContent : stretch
style
overflow : scroll
and POSITION props to
grow : 0
shrink : 0
basis : 200px
- Deep-select your flex container and add your radio buttons and set POSITION props to
grow : 0
shrink : 0
basis : 35px
piggy-backing on here.
I want to collapse a 'column' radio-group like I can collapse a โcolumnโ flex repeater using maxHeight style property (without the radio group re-flowing/wrapping). Would be fine if a vertical scroll bar appeared but not necessary.
The above solution doesnโt appear to work in this case (unless iโve wrongly implemented it)
Any thoughts?