Tag Summary |
button | Renders an HTML 'button' tag. |
checkbox | Renders an HTML 'input' tag with type 'checkbox'. |
checkboxes | Renders multiple HTML 'input' tags with type 'checkbox'. |
errors | Renders field errors in an HTML 'span' tag. |
form | Renders an HTML 'form' tag and exposes a binding path to inner tags for binding. |
hidden | Renders an HTML 'input' tag with type 'hidden' using the bound value. |
input | Renders an HTML 'input' tag with type 'text' using the bound value. |
label | Renders a form field label in an HTML 'label' tag. |
option | Renders a single HTML 'option'. Sets 'selected' as appropriate based on bound value. |
options | Renders a list of HTML 'option' tags. Sets 'selected' as appropriate based on bound value. |
password | Renders an HTML 'input' tag with type 'password' using the bound value. |
radiobutton | Renders an HTML 'input' tag with type 'radio'. |
radiobuttons | Renders multiple HTML 'input' tags with type 'radio'. |
select | Renders an HTML 'select' element. Supports data binding to the selected option. |
textarea | Renders an HTML 'textarea'. |