博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第二十二讲:tapestry的Select组件
阅读量:6159 次
发布时间:2019-06-21

本文共 2139 字,大约阅读时间需要 7 分钟。

hot3.png

Select组件,具体效果直接运行实例吧,源码如下:

VariedSelect.java

/**
* 项目名称:TapestryStart
* 开发模式:Maven+Tapestry5.x+Tapestry-hibernate+Mysql
* 网址:
* 版本:1.0
* 编写:飞风
* 时间:2012-02-29
*/
package com.tapestry.app.pages;
 
import org.apache.tapestry5.annotations.Property;
 
public class VariedSelect {
@Property
private String color0;
 
@Property
private String color1;
 
@Property
private String color2;
 
@Property
private String color3;
 
String[] onPassivate() {
return new String[] { color0, color1, color2, color3 };
}
 
void onActivate(String color0, String color1, String color2, String color3) {
this.color0 = color0;
this.color1 = color1;
this.color2 = color2;
this.color3 = color3;
}
}
 

VariedSelect.tml

<html t:type="layout" title="tapestryStart Index"  t:sidebarTitle="Framework Version"
 xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd" xmlns:p="tapestry:parameter">
<form t:type="form">
This example demonstrates labelling the blank option.<br/><br/>
 
<t:label for="color0"/>:
<select t:type="select" t:id="color0" t:model="literal:Red,Yellow,Blue" t:blankLabel="Choose..."></select>
<input type="submit" value="Submit"/>
You chose: ${color0}
</form><br/>
 
<form t:type="form">
This example demonstrates labelling the blank option using the page's properties file.<br/><br/>
 
<t:label for="color1"/>:
<select t:type="select" t:id="color1" t:model="literal:Red,Yellow,Blue"></select>
<input type="submit" value="Submit"/>
You chose: ${color1}
</form><br/>
 
<form t:type="form">
This example demonstrates making it mandatory to make a choice.<br/><br/>
 
<t:label for="color2"/>:
<select t:type="select" t:id="color2" t:model="literal:Red,Yellow,Blue" t:validate="required"></select>
<input type="submit" value="Submit"/>
You chose: ${color2}
</form><br/>
 
<form t:type="form">
This example demonstrates making it mandatory to make a choice - but it also has a blank option.<br/><br/>
 
<t:label for="color3"/>:
<select t:type="select" t:id="color3" t:model="literal:Red,Yellow,Blue" t:validate="required" t:blankOption="ALWAYS"></select>
<input type="submit" value="Submit"/>
You chose: ${color3}
</form><br/>
</html>

转载于:https://my.oschina.net/shootercn/blog/53688

你可能感兴趣的文章
Eclipsed的SVN插件不能识别之前工作空间的项目
查看>>
Linux 查看iptables状态-重启
查看>>
amazeui学习笔记一(开始使用2)--布局示例layouts
查看>>
c#中lock的使用(用于预约超出限额的流程)
查看>>
ODI基于源表时间戳字段获取增量数据
查看>>
并发容器之CopyOnWriteArrayList(转载)
查看>>
什么是AAC音频格式 AAC-LC 和 AAC-HE的区别是什么
查看>>
原创:goldengate从11.2升级到12.1.2
查看>>
Quartz
查看>>
正则表达式的语法规则
查看>>
C#一个关于委托和事件通俗易懂的例子
查看>>
类似于SVN的文档内容差异对比工具winmerge
查看>>
Cause: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
quratz线程
查看>>
execnet: rapid multi-Python deployment
查看>>
windows修改3389端口
查看>>
关于JavaScript词法
查看>>
FreeSwitch中的会议功能(4)
查看>>
MySQL中创建用户分配权限(到指定数据库或者指定数据库表中)
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>