Hello @ohtusabes
Thank you very much for using our plugin.
You don’t have a radio button field with multiple choices, you have separate radio button fields.
So, in your case, you must emulate the process by coding.
Please insert an “HTML Content” field in the form and enter the following piece of code as its content:
fbuilderjQuery(document).on('click', '#fbuilder [type="radio"]', function(){
let me = this;
fbuilderjQuery('#fbuilder [type="radio"]').each(function(){
if(this.id != me.id) getField(this).setVal(0);
});
});
Best regards.