1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE component-specification PUBLIC
- "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
- "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">
- <component-specification
- class="jeus.tool.webadmin.component.JAXBCheckbox" allow-body="no">
- <parameter name="disabled" default-value="!enabledEdit">
- <description>
- If true, then the checkbox will be disabled and any input from the checkbox
- will be ignored.
- </description>
- </parameter>
- <parameter name="validators"/>
-
- <parameter name="id" property="idParameter" default-value="id"/>
-
- <reserved-parameter name="type"/>
- <reserved-parameter name="checked"/>
- <reserved-parameter name="name"/>
- <inject property="validatableFieldSupport" object="service:tapestry.form.ValidatableFieldSupport"/>
-
- </component-specification>
|