blob: d5cdc3d6acd2e33888ecc243cbad9ae94f07b15a [file] [log] [blame]
<!--
~ Copyright 2009 The Apache Software Foundation
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<html t:type="Border" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
<t:form>
<t:textfield t:id="testmixin" value="myproperty" t:mixins="echovalue"/>
<t:textfield t:id="testmixin2" value="myproperty2" t:mixins="echovalue2"/>
<t:textfield t:id="testmixin3" value="myproperty3" t:mixins="echovalue3"/>
<t:textfield t:id="multimixins" value="myproperty4" t:mixins="echovalue::before:*, echovalue2::before:echovalue3, echovalue3"/>
<t:textonlyondisabledtextfield t:id="defaultbinding" value="myproperty5" disabled="true" t:mixins="echovalue"/>
</t:form>
<div id="mypropertyoutput">${myproperty}</div>
<div id="mypropertyoutput2">${myproperty2}</div>
<div id="mypropertyoutput3">${myproperty3}</div>
<div id="mypropertyoutput4">${myproperty4}</div>
<div id="mypropertyoutput5">${myproperty5}</div>
</html>