⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logon.page

📁 Enjoy Web Dev With Tapestry 一书的源代码
💻 PAGE
字号:
<?xml version="1.0"?>
<!DOCTYPE page-specification PUBLIC
  "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">
<page-specification class="org.apache.struts.webapp.example.Logon">
	<component id="errors" type="Delegator">
		<binding name="delegate" value="beans.delegate.firstError"/>
	</component>
	<component id="form" type="Form">
		<binding name="listener" value="listener:onSubmit"/>
		<binding name="delegate" value="beans.delegate"/>
		<binding name="clientValidationEnabled" value="true"/>
	</component>
	<component id="username" type="TextField">
		<binding name="value" value="username"/>
		<binding name="validators" value="validators:required"/>
		<binding name="displayName" value="message:username"/>
	</component>
	<component id="password" type="TextField">
		<binding name="hidden" value="true"/>
		<binding name="value" value="password"/>
		<binding name="validators" value="validators:required,minLength=3,maxLength=18"/>
		<binding name="displayName" value="message:password"/>
	</component>
</page-specification>

⌨️ 快捷键说明

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