%--
* Copyright by Intland Software
*
* All rights reserved.
*
* This software is the confidential and proprietary information
* of Intland Software. ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with Intland.
*
* $Revision$ $Date$
--%>
<%@ taglib uri="jstl-c" prefix="c" %>
<%@ taglib uri="jstl-fmt" prefix="fmt" %>
<%@ taglib uri="jstl-fn" prefix="fn" %>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="http://displaytag.sf.net" prefix="display" %>
<%@ taglib uri="taglib" prefix="tag" %>
<%@ taglib uri="report" prefix="report" %>
<%@ taglib uri="log" prefix="log" %>
<%@ taglib uri="uitaglib" prefix="ui" %>
<%@page import="com.intland.codebeamer.ui.view.table.TrackerReportDecorator"%>
<%@page import="com.intland.codebeamer.servlet.report.MergedTrackerReportQuery"%>
<%--
Export to Excel
--%>
<%--
Export to Mindmap
--%>
<%--
--%>
Totally found records.
{0} {1} found, displaying {2} to {3}.
Merged Report
found records
:
${query.tracker.project.name}
-
${query.tracker.name}
found records
<%
// create the decorator instance for the report
MergedTrackerReportQuery query = (MergedTrackerReportQuery) pageContext.findAttribute("query");
TrackerReportDecorator trackerReportDecorator = new TrackerReportDecorator(request);
trackerReportDecorator.setClearNavigationList(Boolean.TRUE);
request.setAttribute("trackerReportDecorator", trackerReportDecorator);
%>
<%--
The default sort order of displaytag table is the same as the first column
of ORDER BY statement of the source SQL, when it's calculationg first time.
This is kind of trick. The list of data come from SQL query already sorter
at least by the first column in statement. Thus, when the displaytag
tries to resort the list it will not change the order of records
becase the data already sorted at least by the first column in ORDER BY statement.
It seems the solution is correct.
--%>
<%-- TODO: this could reuse tag too --%>
{0} {1} found.
<%-- Html view --%>
<%-- Export view --%>