Pager Tag ========= In this article: - `Introduction`_ - `Use in template`_ Introduction ------------ For today in the WEB world nobody can`t image complex web-page with repeated material without simple pager. ImCMS make developers life easier. ImCMS ``pager`` tag that split repeated content on separate pages. Use in template --------------- For configure ``pager`` tag in template. Consider code below. .. code-block:: jsp ${firstPagerItem} ${pagerItem} ${lastPagerItem} .. note:: ``pager`` tag must be inside tag, that implements ``IPageableTag`` interface. Available list of tag attributes: """"""""""""""""""""""""""""""""" +--------------------+--------------+--------------------------------------------------+ | Attribute | Type | Description | +====================+==============+==================================================+ | visibleItemCount | Integer | Optional attribute. Describe how many page links | | | | will be shown at once | +--------------------+--------------+--------------------------------------------------+ Example: """""""" Consider example below. Since ``search`` tag implements ``IPageableTag`` - ``pager`` tag can be inserted into it. .. code-block:: jsp <%@taglib prefix="imcms" uri="imcms" %> Template