The required option for radio button selection is not working. Pleas see my post in the CC6 How To #383294.
Forums
Radio buttons required selection not working
As a workaround until it gets updated, you can try adding in the requirement yourself in a custom Javascript view.
https://semantic-ui.com/behaviors/form.html#/examples
jQuery(document).ready(function() {
jQuery(".ui.form").form("add rule", "field_name", ['required']);
});
https://semantic-ui.com/behaviors/form.html#/examples
This topic is locked and no more replies can be posted.