feedback.jwc

来自「学习tapestry的好书啊,绝对经典实用.」· JWC 代码 · 共 29 行

JWC
29
字号
<?xml version="1.0" encoding="GBK"?>
<!DOCTYPE component-specification PUBLIC
        "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
        "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">
<component-specification allow-body="no" allow-informal-parameters="yes">

    <parameter name="comment" required="true"/>

    <parameter name="listener" required="true"/>

    <component id="titleValidField" type="TextField">
        <binding name="value" value="page.title"/>
        <binding name="validators" value="validators:required[请输入标题]"/>
        <binding name="displayName" value="literal:标题"/>
    </component>


    <component id="textareaLabel" type="FieldLabel">
        <binding name="field" value="component:textareaContent"/>
    </component>

    <component id="textareaContent" type="TextArea">
        <binding name="value" value="page.content"/>
        <binding name="validators"
                 value="validators:required[请输入内容],maxLength=2000[内容输入长度不可以大于2000个汉字]"/>
        <binding name="displayName" value="literal:内容"/>
    </component>

</component-specification>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?