When my member submit the form at the history side can display all the option they select.
You can use the onChange() event on your radio groups and when user interacts with it - assign the value to the text in your ‘history’ column (I believe it makes sense to do it while user fills in his choices and not only after submit so that he can track his choices in the meantime but it’s up to you, change it to ‘on submit’ if you wish).
You can implement something like this :
export function radioGroup1_change(event) {
let radioOptions = $w("#radioGroup1").options;
let selectedIndex = $w("#radioGroup1").selectedIndex; //get an index of the selected option
$w('#firstGroupChoice').text = radioOptions[selectedIndex].label; //assign selected option's label to a text element in history column
}
Take a look at the reference:
RadioButtonGroup - Velo API Reference - Wix.com
https://www.wix.com/corvid/reference/$w.RadioButtonGroup.html#selectedIndex
Goodluck!