Column Sorting and Formatting Any column of a table can be made sortable by giving it a sortable attribute—as in <display:column sortable="true">. This makes the column title a hyperlink that allows the user to sort the table's data in ascending or descending order. When the HTML for the table is generated, the column's header cell is output as <th class="order1"> (ascending) or <th class="order2"> (descending). This makes it easy to add up or down arrows as CSS background images for the column header.
Note that by default, DisplayTag will only sort the data on the currently displayed page (see Page Navigation, below). To change this behavior, you can add a sort.amount=list property to displaytag.properties, as has been done in the sample application.
Table data can be formatted by adding a format="Pattern" attribute to the column where you want to apply formatting. The Pattern attribute can be any valid java.text.MessageFormat pattern. For example, <display:column format="{0,date,short}"> would output a date such as November 1st, 2003, in the form 11/1/03 (the actual format is locale-specific in this case).
Row Grouping and Subtotals One of DisplayTag's outstanding features is built-in support for row grouping and subtotals. Say you have queried a data source for order details that span a number of different orders and you want to display the results. One problem you are likely to run into is repeating information: consecutive rows representing line items from the same order will have the same customer name, order number, order date, etc. This makes it difficult to see which line items are associated with which orders.
DisplayTag will group all rows that contain repeating data in any column that sports a group attribute, as in <display:column group="1">. In the article's sample application, I have set group="1" for the customer column, group="2" for the order number column, and group="3" for the order date column, which results in all three columns being grouped together (see Listing 1).
Adding a TotalTableDecorator to a table will cause the values of any column that has a total attribute to be summed up by group and output on a separate row beneath the group. DisplayTag outputs the row with a CSS class of total, making it easy to apply a special style to subtotal rows. To set the table decorator you would use <display:table decorator="org.displaytag.decorator.TotalTableDecorator">. To enable subtotaling in a column, you would use <display:column total="true">.
Page Navigation DisplayTag will add page navigation to any table with a pagesize attribute, as in <display:table pagesize="16">. To handle the many cases associated with page navigation—only one page of data, first of many pages, middle of many pages, last of many pages, etc.—DisplayTag provides properties like paging.banner.onepage, paging.banner.first, and paging.banner.full (see Listing 3).
To illustrate how these properties are used, consider the following:
paging.banner.full=<div class="pagelinks" align="right"><a href={1}><img src="images/first.gif"></a><a href={2}><img src="images/prev.gif"></a>{0}<a href={3} ><img src="images/next.gif"></a><a href={4}><img src="images/last.gif"></a></div>
This rather convoluted property tells DisplayTag to output a banner, similar to that shown in Figure 2, when all paging links are to be displayed.
|
|
Figure 2. Pagelinks: DisplayTagEx's paging banner displays all the paging links. |
A <div> is used here to set the CSS style for the banner to pagelinks. {1} is a placeholder that represents a link to the first page of data. Here it is being used as the target URL for a clickable image. {2}, {3}, and{4} are placeholders for the previous, next, and last pages, respectively. {0} is a special placeholder that outputs links to a set of numbered pages.
Exporting Data to Excel, PDF, et al. Getting DisplayTag to export its data to CSV (comma separated value), XML, Excel, PDF, and RTF requires adding a table attribute, setting a number of configuration properties, and creating span styles for each export type.
DisplayTag will display an export banner for tables whose export attribute is set—e.g. <display:table export="true">.
As with page navigation, there are a large number of export properties to configure. Default properties should be set in the displaytag.properties file. Assuming that you want all of the supported formats to be made available to the user, the properties that are typically modified include export.banner and export.format.filename.
For example, in the sample application, I wanted to enforce right alignment and to apply the pagelinks CSS class to the list of export formats. So, in the displaytag.properties file (see Listing 3), I wrote:
export.banner=<div class="pagelinks" align="right">{0}</div>
Less obvious here is that when the export banner is rendered, each export format hyperlink is rendered within a <span> whose class is "export format"—e.g. <span class="export excel">. Accordingly, the sample application has a CSS class associated with each format, as in:
span.excel {
background-image: url(../images/ico_file_excel.png);
background-repeat: no-repeat;
width: 16px;
}
To set the filename of the exported data, modify the export.format.filename properties, as in export.pdf.filename=data.pdf.
Javascript Row Handlers My last requirement is for rows to be highlighted as the mouse passes over them and, if the user clicks anywhere on a row, a new request is generated that includes a parameter identifying the row that was clicked. To meet this requirement, I need to throw some JavaScript into the mix.
The sample application has a JavaScript file, RowHandlers.js (see Listing 4), with a function called addRowHandlers() that adds three event handlers to each row in an HTML table:
-
onmouseover—Saves the row's class attribute and then changes it to a new style that has a different background color or image.
-
onmouseout—Restores the previous class attribute.
-
onclick—Jumps to a specified URL and includes a request parameter from the selected table row.
To add RowHandlers.js to your JSP:
- Link to the script in the <head> section:
<script src="js/RowHandlers.js" language="javascript" type="text/javascript" /></script>
- Invoke addRowHandlers() in the <body> tag's onload attribute:
<body onload="addRowHandlers('row', 'rowMouseOver', 'OrderDetail.jsp', 'id', 0)">
Step 2 can be translated as: when the body section of the page has loaded, call the function addRowHandlers(), which will add handlers to each row in the table whose id is row. With the handlers in place, when the user moves the mouse over a row its CSS class attribute is changed to rowMouseOver. When the mouse moves out of a row, its CSS class attribute is set back to its original value. If the user clicks on a row, they are sent to OrderDetail.jsp, where the parameter id (whose value is taken from column 0 of the clicked row) is included in the request.
In the sample application, OrderDetails.jsp (see Listing 1) uses RowHandlers.js as described above. OrderDetails.jsp also employs a little sleight of hand by placing the row id values in a hidden column. This is accomplished by setting the <display:column>'s class and headerClass attributes to hidden, which is a CSS style whose display property is none. This is a simple but effective method for keeping data available in the request scope without having to display it to the user.
DisplayTag is an open-source tag library that makes it easy to display tables of data in JSP's. And its applicability is almost limitless—from search results that require page navigation to product listings that benefit from column sorting to financial reports that can take advantage of numeric formatting, group subtotals, and PDF export. The list goes on and on, and I am sure that you will find uses for it in your own web application.
So what's next? Download the sample application and try it out. After that, you can use OrderDetails.jsp as a template for your own dynamic tables. The CSS file, JavaScript file, properties file, and images included in the download can be used as is, or modified as needed to suit the style of your application.
|
相关推荐
以下是一个简单的示例,展示了如何使用JavaScript和displayTag实现表头的动态操作: ```html 列1" sortable="true" /> 列2" sortable="true" /> <script src="path/to/jquery.js"></script> $(document)....
总的来说,DisplayTag是Struts2开发中增强表格展示的强大工具,它的丰富功能和易用性使得开发者能更专注于业务逻辑,而不是繁琐的UI实现。通过深入理解和使用DisplayTag,可以提高Web应用的用户体验和开发效率。
总之,DisplayTag 是 JSP 开发中处理表格数据的强大工具,它的易用性和灵活性使得网页表格的开发变得更加高效和便捷。通过合理利用 DisplayTag,开发者可以将更多精力集中在业务逻辑上,而不是繁琐的页面布局和交互...
JavaScript在网页动态效果和用户交互方面起着关键作用,因此,对于DisplayTag这样复杂的表格组件,理解如何通过JavaScript进行定制和控制是非常重要的。 以下是一些可能涉及的知识点: 1. **DisplayTag介绍**:...
DisplayTag是一个开源的Java库,专门用于在Web应用程序中创建复杂的表格。它提供了一系列的标签和功能,使得在JSP页面上展示数据变得更加容易和灵活。DisplayTag支持分页、排序、导出、国际化和自定义样式,是开发...
DisplayTag是一个开源的...总的来说,DisplayTag项目是学习和理解如何使用DisplayTag库创建高效、功能丰富的表格应用的一个很好的起点。通过实践这个项目,你可以掌握如何在实际项目中整合和利用DisplayTag的强大功能。
DisplayTag是Java Web开发中的一款强大且功能丰富的表格和分页控件库,它极大地简化了在JSP页面中处理复杂表格和实现分页的工作。这个压缩包文件包含的就是DisplayTag的相关jar包以及可能的使用说明文档,对于开发...
4. 使用标签:在JSP中使用DisplayTag标签来创建表格。 5. 定制样式:根据需要编写CSS文件,定制表格样式。 总的来说,DisplayTag 1.1.1是一个强大且灵活的表格标签库,能够帮助开发者快速创建复杂的Web表格,提高...
DisplayTag是一个功能强大的Java Web开发库,主要用于创建表格和数据展示。它提供了许多高级特性,如分页、排序、国际化支持、导出功能等,极大地简化了开发人员在Web应用中处理复杂表格的需求。在使用DisplayTag时...
Displaytag是一个开源的Java库,专门用于创建复杂的表格和数据展示。在1.1版本中,它主要解决了在处理大数据分页时的问题,这使得它成为处理大量数据的理想选择,尤其是在Web应用程序中。这个源码包包含了一系列的...
DisplayTag 是一个强大的开源Java库,专为Web开发设计,提供了一组标签,用于简化HTML表格的创建和操作。这个库特别适用于MVC模式的应用,它允许开发者更专注于业务逻辑而不是展示层的细节。DisplayTag 的主要目标是...
Displaytag是一个开源的Java库,专门用于创建复杂的表格布局,提供了许多高级功能,如分页、排序、国际化、导出等。在Web开发中,它作为一个JSP标签库使用,大大简化了在网页上处理表格数据的过程。"displaytag-jar....
总结起来,DisplayTag提供了丰富的功能和灵活性,使得在JSP中创建复杂的表格变得简单。通过熟练掌握其使用方法,开发者可以高效地构建出具有排序、分页和样式定制等功能的动态表格。无论是简单的数据展示还是复杂的...
Displaytag 是一个开源的 JSP 标签库,专门用于创建数据表格,提供了一组易于使用的标签,可以实现复杂的表格功能,如分页、排序、导出等。在本文中,我们将详细讨论 Displaytag 1.1 版本的使用方法。 **一、...
DisplayTag是一个开源的Java库,专门用于创建复杂的表格展示,尤其在Web应用中十分常见。这个压缩包包含了解决DisplayTag在处理中文显示时遇到的问题,以及一个专门用于编辑.properties文件的插件,使得配置更加方便...
7. **增强性能**:如果表格数据量很大,使用displayTag的延迟加载功能,结合JavaScript的分页处理,可以提高页面加载速度和用户体验。 8. **优化显示**:对于复杂的表头,可以使用JavaScript动态构建嵌套或分组的...
为了在项目中使用DisplayTag,首先需要下载并引用其提供的`DisplayTag.jar`文件,以及依赖的Apache项目相关jar包。此外,还需要在`web.xml`中进行相应的标签库配置,具体如下: ```xml <taglib-uri>...
使用Displaytag,开发者可以快速地在网页上创建出功能丰富的表格,而无需编写大量的HTML和Java代码。以下是Displaytag的一些关键知识点: 1. **表格渲染**:Displaytag通过JSP标签来渲染表格,可以轻松地控制列宽、...
DisplayTag是一个用于创建表格、分页和导出数据的JSP标签库。它通过简化HTML表格的复杂性,提供了诸如排序、分页、格式化和国际化等特性,极大地提高了开发效率。 2. **安装与引入** 要使用DisplayTag,首先需要...