D.2 Cache Tag
The first tag that must be included in the JSP is the “cache” tag. Use the cache tag when you have multiple reports on the same JSP page, and want to refresh one report without regenerating the others (i.e., the others should be displayed from the cache). The cache tag has a single required attribute, jspId, which needs to be unique for the whole web application. This means that no JSPs may have a cache tag with the same jspId. There is one cache tag for the entire JSP page.
<sree:cache jspId="reportJSP"/>
| << D.1 Tag Library Import | © 1996-2013 InetSoft Technology Corporation (v11.4) | D.3 Create Tag >> |