<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can I add pagination to a Dashboard Panel? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42530#M2040</link>
    <description>&lt;P&gt;There is an error in the doc about this. What is posted by MHibbin above is correct. But in the doc section titled "Panel reference for Simplified XML" (&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3/Developer/PanelReference%5D"&gt;http://docs.splunk.com/Documentation/Splunk/4.3/Developer/PanelReference]&lt;/A&gt;) has the following code which does NOT work:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;showPager&amp;gt;(true|false)&amp;lt;/showPager&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 07 Feb 2012 15:55:53 GMT</pubDate>
    <dc:creator>rgcurry</dc:creator>
    <dc:date>2012-02-07T15:55:53Z</dc:date>
    <item>
      <title>How can I add pagination to a Dashboard Panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42528#M2038</link>
      <description>&lt;P&gt;I have a number of panels on a dashboard that contain data tables with a large number of results.  For some reason the panels also vary in the number of results that appear in the panel (i.e. 1 panel has 10 (of 60), another has 50 (of 66)) but I have nothing in the report/query that would control this. Is there a way to set pagination on these panels with a certain # of results per page?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2011 20:59:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42528#M2038</guid>
      <dc:creator>atornes</dc:creator>
      <dc:date>2011-12-29T20:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can I add pagination to a Dashboard Panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42529#M2039</link>
      <description>&lt;P&gt;Atornes, &lt;/P&gt;

&lt;P&gt;You will need to edit the XML of your dashboard.&lt;/P&gt;

&lt;P&gt;You can use the following documentation for editing you simple XML (I'm assuming you have not converted to advanced XML)... &lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Developer/AddATable#Configure_the_table_panel" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Developer/AddATable#Configure_the_table_panel&lt;/A&gt;&lt;BR /&gt;
Specifically you will be looking at the table options "count" and "showPager"... i.e.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;table&amp;gt;
    &amp;lt;title&amp;gt;Example&amp;lt;/title&amp;gt;
    &amp;lt;searchName&amp;gt;ExampleSearch&amp;lt;/searchName&amp;gt;
    &amp;lt;fields&amp;gt;field1, field2, field3&amp;lt;/fields&amp;gt;
    &amp;lt;option name="count"&amp;gt;50&amp;lt;/option&amp;gt;
    &amp;lt;option name="showPager"&amp;gt;true&amp;lt;/option&amp;gt;
&amp;lt;/table&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you have switched to advanced XML, you will need to reference the following docs...&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Developer/AdvancedSearch#Add_pagination" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Developer/AdvancedSearch#Add_pagination&lt;/A&gt;&lt;BR /&gt;
...Specifically...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="Paginator"&amp;gt;
  &amp;lt;param name="entityName"&amp;gt;events&amp;lt;/param&amp;gt;
    &amp;lt;module name="EventsViewer"/&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps,&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;MHibbin&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:15:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42529#M2039</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2020-09-28T10:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can I add pagination to a Dashboard Panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42530#M2040</link>
      <description>&lt;P&gt;There is an error in the doc about this. What is posted by MHibbin above is correct. But in the doc section titled "Panel reference for Simplified XML" (&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3/Developer/PanelReference%5D"&gt;http://docs.splunk.com/Documentation/Splunk/4.3/Developer/PanelReference]&lt;/A&gt;) has the following code which does NOT work:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;showPager&amp;gt;(true|false)&amp;lt;/showPager&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Feb 2012 15:55:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42530#M2040</guid>
      <dc:creator>rgcurry</dc:creator>
      <dc:date>2012-02-07T15:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I add pagination to a Dashboard Panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42531#M2041</link>
      <description>&lt;P&gt;I think I see your confusion...&lt;/P&gt;

&lt;P&gt;The syntax you have detailed above (i.e. &lt;CODE&gt;&amp;lt;showPager&amp;gt;(true|false)&amp;lt;/showPager&amp;gt;&lt;/CODE&gt;) is in the table of possible options, but if you look at the examples below the table(s) it shows the examples in the correct format (showpager is not shown here though).&lt;/P&gt;

&lt;P&gt;Hope this helps,&lt;/P&gt;

&lt;P&gt;MHibbin&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2012 23:15:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-add-pagination-to-a-Dashboard-Panel/m-p/42531#M2041</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-02-07T23:15:55Z</dc:date>
    </item>
  </channel>
</rss>

