How can I add checkboxes?

Asked by James Genus Sr

Wish: To be able to create checkboxes in templates.

Question information

Language:
English Edit question
Status:
Answered
For:
RedNotebook Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:

This question was originally filed as bug #1055589.

Revision history for this message
Jendrik Seipp (jendrikseipp) said :
#1

Well, creatign checkboxes is easy, just insert raw HTML with the single
quotation marks:

'''
<form action="">
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle" value="Car">I have a car
</form>
'''

Unfortunately, the selections won't be saved to edit mode so you'll have
to adapt the html:

'''
<form action="">
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle" value="Car" checked="yes">I have a
car
</form>
'''

Revision history for this message
Jendrik Seipp (jendrikseipp) said :
#2

answered in bugreport already.

Can you help with this problem?

Provide an answer of your own, or ask James Genus Sr for more information if necessary.

To post a message you must log in.