Hello,
I have in Cronoforms an HTML content with the following 3 radio elements:
- <input type="radio" name="room" value="b">
- <input type="radio" name="room" value="c">
- <input type="radio" name="room" value="d">
- and the button:
- <button class="nui button colored slate" name="submitbutton" id="submitbutton" type="submit">submit</button>
I want that when clicking the submit button, it checks if one of the 3 input fields has been selected.
If not, an appropriate message should be displayed.
Unfortunately, I can't manage this, because in HTML content there is no REQUIRED behavior.Thank you in advance for your help!