blob: 97b39e29f70fbae18f1c72635a558069b4089954 [file] [log] [blame]
<html t:type="Border" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd" xml:space="default">
<h1>Form Zone Demo</h1>
<t:form zone="valueZone" class="form-inline">
<t:textfield t:id="longValue" class="input-small"/>
<input type="submit" value="Submit" class="btn btn-primary"/>
<t:zone t:id="valueZone">
<t:if test="longValue">
<p>Submitted value:
<span id="outputvalue">
<t:outputraw value="longValue"/>
</span>
</p>
</t:if>
</t:zone>
</t:form>
</html>