| Tag Summary |
| init | Custom tag to initialize the web page to correctly render scrollable tables. This needs to be the first tag of all list data tags and should be placed in the page before the html tag. The <core:pagecache id="xyz"/> in emptypage.jsp layout will take the elements put into cache by this tag and place them at a correct location. |
| formcontent | Custom tag to create and insert to the page all form variables required by the list data pattern. This tag needs to be in a HTML form which can be submitted to the server to an instance of ListBrowserServlet. |
| action | Custom tag to generate hyperlink that can invoke instance of ListBrowserServlet and perform the desired action such as going to the next or the previous page. This tag implements functionality similar to methods in listdata.js but only based on the data available at the time when the page is generated. If the page dynamically changes some of the list data pattern variables for example based on users' action, you should use methods in the listdata.js instead. |
| previouspage | Custom tag to generate hyperlink that can invoke instance of ListBrowserServlet and display the previous page. This tag implements functionality similar to methods in listdata.js but only based on the data available at the time when the page is generated. If the page dynamically changes some of the list data pattern variables for example based on users' action, you should use methods in the listdata.js instead. |
| nextpage | Custom tag to generate hyperlink that can invoke instance of ListBrowserServlet and display the next page. This tag implements functionality similar to methods in listdata.js but only based on the data available at the time when the page is generated. If the page dynamically changes some of the list data pattern variables for example based on users' action, you should use methods in the listdata.js instead. |
| gotopage | Custom tag to generate hyperlink that can invoke instance of ListBrowserServlet and display a specific page. This tag implements functionality similar to methods in listdata.js but only based on the data available at the time when the page is generated. If the page dynamically changes some of the list data pattern variables for example based on users' action, you should use methods in the listdata.js instead. |
| changepagesize | Custom tag to generate hyperlink that can invoke instance of ListBrowserServlet and display the current page with specific number of items. This tag implements functionality similar to methods in listdata.js but only based on the data available at the time when the page is generated. If the page dynamically changes some of the list data pattern variables for example based on users' action, you should use methods in the listdata.js instead. |