SYNOPSIS
HTMLDocument::SelectOption< >- = SelectOption(String label,String value,Bool chosen)
DESCRIPTION
An option for selection. These can be used to make the <option> elements for a <select> or to describe a checkbox or radio button. The value field may be left blank, in which case the contents of the label field will be used in its place.
The chosen field determines whether this option is initially selected when the page loads. The behaviour when multiple options in a non-multiple select or multiple radio buttons with the same name are marked as initially chosen is undefined, and so you should avoid this in your code.
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.RELATED
HTMLDocument.addLabelledSelect(3kaya)
HTMLDocument.addLazySelect(3kaya)
HTMLDocument.addOption(3kaya)
HTMLDocument.addOptionList(3kaya)
HTMLDocument.addSelectElement(3kaya)