- 浏览: 253426 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
tanglingshuai:
liulehua 写道根本原因是:没有把该对象对应的主键保存到 ...
关于: org.hibernate.StaleStateException: Batch update -
javeye:
转载了你的文章http://javeye.iteye.com/ ...
关于在tomcat下配置 error-page 500错误不能在IE下转发页面的问题 -
imlsq:
嘿嘿, 使用SEAM 7-8个月时间了还是放弃使用SEAM的想 ...
发现一个Seam做的企业应用,blackberry的在线商店 -
yuanliyin:
我也在用,唯一不爽的就是性能!
发现一个Seam做的企业应用,blackberry的在线商店 -
perfect:
假的 ,大家不要上当 ,根本不能用
HttpWatch 6.1.41 许可文件
下面来看一个复杂一点的例子: 使用选择框
java code:
final CheckGroup group = new CheckGroup("group", new ArrayList());
Form form = new Form("form") {
protected void onSubmit() {
info("selected person(s): " + group.getModelObjectAsString());
}
};
add(form);
form.add(group);
group.add(new CheckGroupSelector("groupselector"));
ListView persons = new ListView("persons", getPersons()) {
protected void populateItem(ListItem item) {
item.add(new Check("checkbox", item.getModel()));
item.add(new Label("name", new PropertyModel(item.getModel(),
"name")));
item.add(new Label("lastName", new PropertyModel(item
.getModel(), "lastName")));
}
};
group.add(persons);
//multiCheckForm
final Input input = new Input();
Form multiCheckForm = new Form("multiCheckForm",new CompoundPropertyModel(input))
{
protected void onSubmit()
{
info("input: " + input);
}
};
add(multiCheckForm);
// add a couple of checkbox multiple choice components, notice the model
// used is a compound model set on the page
CheckBoxMultipleChoice listChoice = new CheckBoxMultipleChoice("sites", SITES);
multiCheckForm.add(listChoice);
listChoice = new CheckBoxMultipleChoice("choices", MANY_CHOICES);
multiCheckForm.add(listChoice);
// radio group
final RadioGroup radioGroup = new RadioGroup("radioGroup", new Model());
Form radioGroupForm = new Form("radioGroupForm")
{
protected void onSubmit()
{
info("selected person: " + radioGroup.getModelObjectAsString());
}
};
add(radioGroupForm);
radioGroupForm.add(radioGroup);
ListView persons2 = new ListView("persons2", getPersons())
{
protected void populateItem(ListItem item)
{
item.add(new Radio("radio", item.getModel()));
item.add(new Label("name", new PropertyModel(item.getModel(), "name")));
item.add(new Label("lastName", new PropertyModel(item.getModel(), "lastName")));
}
};
radioGroup.add(persons2);
add(new FeedbackPanel("feedback"));
HTml code:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Wicket Examples - component reference</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>wicket.markup.html.form.ListChoice</h1>
<wicket:link><a href="Index.html">[back to the reference]</a></wicket:link>
<p>
A CheckBoxGroup and CheckBoxComponnet components let users select multiple values from a group of checkboxes. These components are more flexible then the CheckBoxMultipleChoice component in that individual checkboxes are full components, unlike with CheckBoxMultipleChoice, and thus can be used anywhere in the markup.
</p>
<p>
<form wicket:id="form">
<span wicket:id="group">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select persons</td>
<td>
<input type="checkbox" wicket:id="groupselector">check/uncheck all </input> <br/>
<table cellspacing="0" cellpadding="2">
<tr>
<td><b>Select</b></td>
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
</tr>
<tr wicket:id="persons">
<td><input type="checkbox" wicket:id="checkbox"/></td>
<td><span wicket:id="name">[this is where name will be]</span></td>
<td><span wicket:id="lastName">[this is where lastname will be]</span></td>
</tr>
</table>
<span valign="top">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</span>
</form>
<h1> multi Check Form</h1>
<form wicket:id="multiCheckForm">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select your favorite sites</td>
<td>
<span wicket:id="sites">
</span>
</td>
</tr>
<tr>
<td valign="top">Select some of these excellent choices</td>
<td>
<span wicket:id="choices">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</form>
<h1> Radio Group</h1>
<form wicket:id="radioGroupForm">
<span wicket:id="radioGroup">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select a person</td>
<td>
<table cellspacing="0" cellpadding="2">
<tr>
<td><b>Select</b></td>
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
</tr>
<tr wicket:id="persons2">
<td><input type="radio" wicket:id="radio"/></td>
<td><span wicket:id="name">[this is where name will be]</span></td>
<td><span wicket:id="lastName">[this is where lastname will be]</span></td>
</tr>
</table>
<span valign="top">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</span>
</form>
<span wicket:id="feedback">feedbackmessages will be put here</span>
</body>
</html>
java code:
final CheckGroup group = new CheckGroup("group", new ArrayList());
Form form = new Form("form") {
protected void onSubmit() {
info("selected person(s): " + group.getModelObjectAsString());
}
};
add(form);
form.add(group);
group.add(new CheckGroupSelector("groupselector"));
ListView persons = new ListView("persons", getPersons()) {
protected void populateItem(ListItem item) {
item.add(new Check("checkbox", item.getModel()));
item.add(new Label("name", new PropertyModel(item.getModel(),
"name")));
item.add(new Label("lastName", new PropertyModel(item
.getModel(), "lastName")));
}
};
group.add(persons);
//multiCheckForm
final Input input = new Input();
Form multiCheckForm = new Form("multiCheckForm",new CompoundPropertyModel(input))
{
protected void onSubmit()
{
info("input: " + input);
}
};
add(multiCheckForm);
// add a couple of checkbox multiple choice components, notice the model
// used is a compound model set on the page
CheckBoxMultipleChoice listChoice = new CheckBoxMultipleChoice("sites", SITES);
multiCheckForm.add(listChoice);
listChoice = new CheckBoxMultipleChoice("choices", MANY_CHOICES);
multiCheckForm.add(listChoice);
// radio group
final RadioGroup radioGroup = new RadioGroup("radioGroup", new Model());
Form radioGroupForm = new Form("radioGroupForm")
{
protected void onSubmit()
{
info("selected person: " + radioGroup.getModelObjectAsString());
}
};
add(radioGroupForm);
radioGroupForm.add(radioGroup);
ListView persons2 = new ListView("persons2", getPersons())
{
protected void populateItem(ListItem item)
{
item.add(new Radio("radio", item.getModel()));
item.add(new Label("name", new PropertyModel(item.getModel(), "name")));
item.add(new Label("lastName", new PropertyModel(item.getModel(), "lastName")));
}
};
radioGroup.add(persons2);
add(new FeedbackPanel("feedback"));
HTml code:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Wicket Examples - component reference</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>wicket.markup.html.form.ListChoice</h1>
<wicket:link><a href="Index.html">[back to the reference]</a></wicket:link>
<p>
A CheckBoxGroup and CheckBoxComponnet components let users select multiple values from a group of checkboxes. These components are more flexible then the CheckBoxMultipleChoice component in that individual checkboxes are full components, unlike with CheckBoxMultipleChoice, and thus can be used anywhere in the markup.
</p>
<p>
<form wicket:id="form">
<span wicket:id="group">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select persons</td>
<td>
<input type="checkbox" wicket:id="groupselector">check/uncheck all </input> <br/>
<table cellspacing="0" cellpadding="2">
<tr>
<td><b>Select</b></td>
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
</tr>
<tr wicket:id="persons">
<td><input type="checkbox" wicket:id="checkbox"/></td>
<td><span wicket:id="name">[this is where name will be]</span></td>
<td><span wicket:id="lastName">[this is where lastname will be]</span></td>
</tr>
</table>
<span valign="top">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</span>
</form>
<h1> multi Check Form</h1>
<form wicket:id="multiCheckForm">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select your favorite sites</td>
<td>
<span wicket:id="sites">
</span>
</td>
</tr>
<tr>
<td valign="top">Select some of these excellent choices</td>
<td>
<span wicket:id="choices">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</form>
<h1> Radio Group</h1>
<form wicket:id="radioGroupForm">
<span wicket:id="radioGroup">
<table style="border: 2px dotted #fc0; width: 400px; padding: 5px;">
<tr>
<td valign="top">Select a person</td>
<td>
<table cellspacing="0" cellpadding="2">
<tr>
<td><b>Select</b></td>
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
</tr>
<tr wicket:id="persons2">
<td><input type="radio" wicket:id="radio"/></td>
<td><span wicket:id="name">[this is where name will be]</span></td>
<td><span wicket:id="lastName">[this is where lastname will be]</span></td>
</tr>
</table>
<span valign="top">
</span>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="submit" />
</td>
</tr>
</table>
</span>
</form>
<span wicket:id="feedback">feedbackmessages will be put here</span>
</body>
</html>
发表评论
-
学习使用Java DataBase (Derby) -- 嵌入式数据库
2006-04-13 21:19 1766学习使用Java DataBas ... -
在derby(Java DB) 中操作 clob 和 blob
2006-04-14 15:23 1508在前面一篇文章中, ... -
利用swing开源组件和netbeans快速构建豪华swing界面
2006-04-15 13:41 1449利用swing开源组件和netbeans快速构建豪华s ... -
Java Pet Store 开始全面使用 Web 2.0 技术
2006-05-16 21:58 1063Java Pet Store 开 ... -
Hibernate Validator 简介
2006-05-17 10:35 1273Hibernate Validator 简介 ... -
Google发布AJAX开发工具 Google Web Toolkit
2006-05-17 21:17 901Google Web Toolkit - Build ... -
解析 Hibernate Validator
2006-05-18 15:17 1484任何获得Matrix授权的网站,转载请保留以下作者信 ... -
Spring in Action 笔记(I)
2006-05-22 14:13 887By : icess ,我的部落格 http:// ... -
Spring in Action 笔记(II)
2006-05-25 00:04 1161... -
Spring in Action 笔记(III) -- 在Spring下的Hibernate数据操作
2006-05-27 11:01 833Spring in A ... -
Spring in Action 笔记 (IV) -- i18n问题和自定义属性编辑器
2006-05-29 11:24 987Spring in Action 笔记 (IV) -- i18 ... -
Breezy简介 -- 快速开发Swing程序!
2006-06-04 22:33 1424Breezy简介 -- 快速开发Swing程序! ... -
最新消息 ,开源嵌入式数据库 Derby(JavaDB) 绑定在JDK 1.6中.
2006-06-18 18:48 1716如下:Source: Fran ... -
callisto(Eclipse 3.2) 迟到了 ?
2006-06-30 23:04 784在今天早些时候访问 callisto 的主页(http://w ... -
Callisto 终于可以下载了.
2006-07-01 04:47 784Callisto 终于可以下载了. Eclipse 3.2 ... -
最近想研究一下DWR 收集一些从入门到精通的系列资料
2006-07-13 15:55 940最近想研究一下DWR 收集一些从入门到精通的系列资料, 以备将 ... -
decode javascript.encode using java
2006-08-01 13:18 1553在前面一篇文章(http://www.hexiao.cn/bl ... -
Wicket 入门示例 :Hello World.
2006-08-05 10:38 1232Wicket http://wicketframework.o ... -
Wicket 教程2: 如何使用Label,MultiLineLabel,Border,BoxBorder
2006-08-07 15:29 1408上次介绍了一个wicket的一个HelloWorld入门示例, ... -
Wicket 教程3:使用 PageView 来调试页面
2006-08-08 09:22 1569使用 PageView 来调试页面.Wicket中提供了一个P ...
相关推荐
3. **组件定义**:使用`add()`方法在页面类中添加组件,如`Label`、`Form`、`Button`等。 4. **事件处理**:通过`onEvent()`方法或在组件上定义`AjaxBehavior`来处理用户交互事件。 5. **数据绑定**:Wicket 提供了...
- **与 Struts 比较:** Wicket 更加注重组件化和 MVC 的分离,提供更好的代码组织结构;而 Struts 更侧重于表单处理和数据验证。 - **与 Tapestry 比较:** 两者都强调组件化开发,但 Wicket 在性能优化方面做得...
页面开始,理解组件的使用和页面的结构。 - **表单处理(Form Handling)**: Wicket提供了强大的表单组件和处理机制,可以轻松实现数据验证和提交。 - **国际化(Internationalization, i18n)**: 支持多语言,...
Wicket是一款开源的Java Web应用程序框架,它强调组件化和模型-视图-控制器(MVC)的设计模式。这个“wicket简单实例”是为了帮助初学者理解Wicket的工作原理和基本操作,通过运行这些示例,你可以深入学习Wicket的...
相较于Struts,Wicket提供了更丰富的组件库和支持,使得开发者可以更加专注于业务逻辑而非框架细节。 - **Tapestry**:它也是一个组件驱动的框架,但在灵活性方面不如Wicket。Wicket在组件复用、数据绑定等方面具有...
- 官方文档:提供详细的API参考和教程。 - 用户论坛:讨论问题,分享经验,获取社区支持。 - 第三方库:许多社区贡献的组件库扩展了Wicket的功能。 阅读《Wicket开发指南》PDF,你将逐步了解如何搭建Wicket环境,...
### Wicket常用控件使用方法详解 #### 一、引言 Wicket是一个灵活而强大的Java Web框架,它提供了一套简洁高效的API用于构建复杂的Web应用程序。与.NET平台的开发方式相似,Wicket允许开发者在HTML页面中声明控件,...
- **ImageButton**:使用图像作为按钮。 - **SubmitLink**:链接形式的提交按钮。 以上内容概述了Wicket开发指南中的关键知识点,希望能帮助读者更好地理解和掌握Wicket框架的核心概念和技术细节。
Wicket的核心理念是组件驱动,这意味着网页被分解为可重用、可管理的组件,每个组件都有自己的状态和生命周期。在"Apache Wicket演示文稿的源代码"中,我们可以深入理解这一框架的内部工作原理。 标题中的“wicket-...
2. **组件生命周期**:Wicket组件有三个主要的生命周期阶段:创建、渲染和销毁。在渲染阶段,组件负责生成HTML输出;在创建阶段,可以进行初始化操作;销毁阶段则通常用于释放资源。 **三、模型-视图-控制器(MVC)...
然而,Wicket通过其独特的组件化设计和易于使用的特性,在众多框架中脱颖而出。 **1.3 Wicket与其他Web框架的比较** - **Struts概述**:Struts是最早的MVC框架之一,强调配置文件的使用,而Wicket则更注重代码本身...
2. **Form组件**:表单组件是Wicket中最常用的组件之一,用于收集用户输入的数据。 - **添加组件**:可以将多个组件添加到一个表单中,例如: ```java Form<ClinicItem> form = new Form("form"); add(new ...
- 与 Wicket 一样,提供了事件驱动和组件化的编程模型。 - **Wicket**: - 基于组件的 Java Web 框架。 - 采用类似于 ASP.NET 的开发模式。 - 支持 HTML 与 Java 代码的分离。 - 提供了较为丰富的组件库和支持 ...
- **模型-视图-控制器(MVC)模式**: 虽然Wicket不强制使用MVC,但它的设计哲学与MVC模式类似,组件可以绑定到数据模型,视图和控制逻辑自然地分离。 **2. Wicket 架构** - **容器**: Wicket 应用程序由一系列容器...
4. **状态管理(State Management)**:Wicket 自动管理页面和组件的状态,无需使用session或cookie。这使得页面的呈现和回话管理变得更加简单。 **二、Wicket 开发环境** 1. **Eclipse IDE**:本项目使用Eclipse...
其中`wicket:id`属性用于标识Wicket组件。 ##### Java代码实现 接下来是Java端的实现部分。这部分代码定义了页面的主要逻辑,并且包含了处理Ajax请求的代码。 ```java package com.steelma.wicket; import java....