- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

the_wolverine
Champion
05-20-2010
12:44 AM
I have an event list in my dashboard. I am able to increase the number of events displayed but I really want to fix the panel height and provide a vertical scroller so users can scroll down to see additional events.
How would I enable vertical scrolling in a panel? Is this possible? If so, can someone please provide an example?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

the_wolverine
Champion
05-24-2010
11:42 PM
Instead of adding a vertical scroller, you can add paginators to your panel to allow users to click through pages of results. Example:
<dashboard>
<label>My Dashboard with Paginators</label>
<row>
<event>
<title>Title of Search - Splunk Errs Last 24</title>
<searchString>index=_internal source=*splunkd.log error host=* NOT DEBUG</searchString>
<earliestTime>-24h</earliestTime>
<option name="count">10</option>
<option name="showPager">true</option>
<option name="displayRowNumbers">false</option>
</event>
</row>
</dashboard>
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SreeragM
Explorer
07-06-2015
12:38 PM
try this css property on the div
overflow-y: scroll
-Sreerag
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

the_wolverine
Champion
05-24-2010
11:42 PM
Instead of adding a vertical scroller, you can add paginators to your panel to allow users to click through pages of results. Example:
<dashboard>
<label>My Dashboard with Paginators</label>
<row>
<event>
<title>Title of Search - Splunk Errs Last 24</title>
<searchString>index=_internal source=*splunkd.log error host=* NOT DEBUG</searchString>
<earliestTime>-24h</earliestTime>
<option name="count">10</option>
<option name="showPager">true</option>
<option name="displayRowNumbers">false</option>
</event>
</row>
</dashboard>
