Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Webforms Administration
#2
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:

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
Reply


Messages In This Thread
Webforms Administration - anilp78 - 01-14-2015, 10:46 AM
Re: Webforms Administration - joebordes - 01-14-2015, 03:09 PM
Re: Webforms Administration - anilp78 - 01-15-2015, 06:08 PM
Re: Webforms Administration - joebordes - 01-15-2015, 06:14 PM
Re: Webforms Administration - anilp78 - 01-25-2015, 08:34 AM
Re: Webforms Administration - joebordes - 01-25-2015, 07:41 PM
Re: Webforms Administration - anilp78 - 01-26-2015, 06:01 AM
Re: Webforms Administration - joebordes - 01-26-2015, 09:20 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)