blob: 7e68c40ea6b0db85e8839e7d5b8af836d7229b68 [file] [log] [blame]
<html t:type="Border" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd" xmlns:p="tapestry:parameter">
<h1>Bean Editor With Form Fragment Demo</h1>
<t:form>
<t:loop source="prop:[1,2]" index="var:index">
<t:beaneditor object="job"
include="title,canBeDoneRemotely">
<p:canBeDoneRemotely>
<t:checkbox t:id="canBeDoneRemotely" value="job.canBeDoneRemotely"
t:mixins="triggerfragment" TriggerFragment.fragment="jobAddress" TriggerFragment.invert="true"/>
<t:label for="canBeDoneRemotely" />
</p:canBeDoneRemotely>
</t:beaneditor>
<t:formfragment t:id="jobAddress" visible="!job.canBeDoneRemotely">
<t:beaneditor object="job" include="address" />
</t:formfragment>
</t:loop>
</t:form>
</html>