01-14-2015, 03:09 PM
HTML radio buttons are totally equivalent to picklist. coreBOS implements picklists and not radio buttons.
That said, it is very easy to modify your webform to use radio buttons. Let's say that you have a picklist called "sex", with values "Male" and "Female". The web form will generate html code like this:
which you can substitute with
Note that the important part here is that the "name" attirubte use the name of the field in coreBOS
Give that a try and let us know how it goes.
That said, it is very easy to modify your webform to use radio buttons. Let's say that you have a picklist called "sex", with values "Male" and "Female". The web form will generate html code like this:
Code:
<select name="sex">
<option value="Male">Male</option>
<option value="Female">Female</option>
</select>
which you can substitute with
Code:
<input type="radio" name="sex" value="Male">Male<br>
<input type="radio" name="sex" value="Female">Female
Note that the important part here is that the "name" attirubte use the name of the field in coreBOS
Give that a try and let us know how it goes.
Joe
TSolucio
TSolucio