Struts2 日历选择框 标签<sx:datetimepicker.../;详解

Posted itzyjr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2 日历选择框 标签<sx:datetimepicker.../;详解相关的知识,希望对你有一定的参考价值。

先导入struts2-dojo-plugin-2.1.6.jar,再在jsp页面最开头加上:

<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>

在<html> </html>中加入<sx:head />:head标签的功能是生成页面文件的HEAD部分,它还生成了对Ajax框架dojo的配置文件的引用或代码。

下面的代码直接就实现了日历选择框:

		<sx:datetimepicker label="日历" name="calendar" value="today" 
		toggleType="plain" toggleDuration="300" language="zh_CN" type="date" 
		displayWeeks="5" displayFormat="dd/MM/yyyy" formatLength="long"  />

Parameters:

(注:toggle['tɒg(ə)l]触发)

最后的效果如下图:

value属性的写法还有:

<sx:datetimepicker value="%date"/>

<sx:datetimepicker value="%'2007-01-01'"/>
<sx:datetimepicker value="%'today'"/>

datetimepicker标签解析:

Description:

Renders a date/time picker in a dropdown(下拉) container.

A stand-alone DateTimePicker widget(文本桌面) that makes it easy to select a date/time, or increment by week, month, and/or year.

It is possible to customize the user-visible formatting with either the 'formatLength' (long, short, medium or full) or 'displayFormat' attributes. By defaulty current locale(区域设置) will be used.

参数displayFormat的所有可能取值:

FormatDescription
dDay of the month
DDay of year
MMonth - Use one or two for the numerical month, three for the abbreviation, or four for the full name, or 5 for the narrow name.
yYear
hHour [1-12].
HHour [0-23].
mMinute. Use one or two for zero padding.
sSecond. Use one or two for zero padding.

The following formats(in order) will be used to parse the values of the attributes 'value', 'startDate' and 'endDate':

  • SimpleDateFormat built using RFC 3339 (yyyy-MM-dd'T'HH:mm:ss)
  • SimpleDateFormat.getTimeInstance(DateFormat.SHORT)
  • SimpleDateFormat.getDateInstance(DateFormat.SHORT)
  • SimpleDateFormat.getDateInstance(DateFormat.MEDIUM)
  • SimpleDateFormat.getDateInstance(DateFormat.FULL)
  • SimpleDateFormat.getDateInstance(DateFormat.LONG)
  • SimpleDateFormat built using the value of the 'displayFormat' attribute(if any)

以上是关于Struts2 日历选择框 标签<sx:datetimepicker.../;详解的主要内容,如果未能解决你的问题,请参考以下文章

点在图片上 显示日历框 可以选择日历上的日期 来查询对应时间数据库的信息 这个JSP代码怎么写

本示例演示如何通过Struts2框架提供的标签,简单地实现级联下拉框

struts2页面中修改为啥select值不回显

java struts2入门学习---常用标签学习总结

使用 struts2 dojo 标签填充一个下拉列表以选择其他下拉列表

struts2中的s:file标签怎么限定上传文件为图片类型,最好是能在选择文件时就只能选择图片文件