<?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 do you make a table that reduces in height when your dashboard search returns no results? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437886#M124688</link>
    <description>&lt;P&gt;An ideal approach would be to use &lt;CODE&gt;depends&lt;/CODE&gt; and &lt;CODE&gt;rejects&lt;/CODE&gt; attributes based on token which is either set or unset depending upon results returned from search or no results case (through &lt;CODE&gt;job.resultCount&lt;/CODE&gt; predefined Search Event Handler Token).  Refer to Splunk Documentation: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Search_tokens_for_dynamic_display_example"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Search_tokens_for_dynamic_display_example&lt;/A&gt; Or &lt;CODE&gt;Null Search Swapper&lt;/CODE&gt; example in the &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Examples&lt;/A&gt; App.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;However, since the ask is to display the table but reduce the height, similar approach will be used but instead of hiding the table and showing a custom panel, it will be used to apply custom CSS override.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Following run anywhere example uses:&lt;/P&gt;

&lt;P&gt;1) A hidden &lt;CODE&gt;&amp;lt;html&amp;gt;&lt;/CODE&gt; panel to apply CSS for dashboard. The tokens &lt;CODE&gt;$tokHeight$&lt;/CODE&gt; and &lt;CODE&gt;$tokAlertInfoTop$&lt;/CODE&gt;, have been used to set the table height and push the &lt;CODE&gt;No Result Found&lt;/CODE&gt; message a bit up in the table with reduced height.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          #myTable .splunk-table{
            $tokHeight$
          }
          #myTable .alert-info{
            $tokAlertInfoTop$
          }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2) The &lt;CODE&gt;&amp;lt;done&amp;gt;&lt;/CODE&gt; Search Event Handler is used to access predefined Search Job token i.e. &lt;CODE&gt;$job.resultCount$&lt;/CODE&gt; which is 0 when No Results are returned and &amp;gt;0 otherwise. The tokens for CSS override are set accordingly, if no results are found, otherwise the tokens remain blank.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          &amp;lt;done&amp;gt;
            &amp;lt;condition match="$job.resultCount$==0"&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;height: 50px !important;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;position:relative; top:-130px !important;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Table With Results&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5695i5ED644AB825469E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;STRONG&gt;Table Without Results: Top Table for Error Count By Component has height reduced&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5696iA0CB28ED8D255BA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the complete Simple XML Code.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Panel Table Height change on No Result Found&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          .dashboard-row .dashboard-panel .panel-head h3{
            text-align:center !important;
            color:white !important;
            font-weight: bold !important;
            background:black !important;
          }
          #myTable .splunk-table{
            $tokHeight$
          }
          #myTable .alert-info{
            $tokAlertInfoTop$
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;      
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
        &amp;lt;default&amp;gt;
          &amp;lt;earliest&amp;gt;-1s@s&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;table id="myTable"&amp;gt;
        &amp;lt;title&amp;gt;Error Count By Component&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=ERROR
| stats count by component&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="$job.resultCount$==0"&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;height: 50px !important;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;position:relative; top:-130px !important;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
    &amp;lt;row&amp;gt;    
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Splunk Internal Activity by Component&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| stats count by component&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 01 Sep 2018 23:16:43 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2018-09-01T23:16:43Z</dc:date>
    <item>
      <title>How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437885#M124687</link>
      <description>&lt;P&gt;How to change a Simple XML table height when no data is present? The table should be much smaller when no alerts are triggered. &lt;CODE&gt;Table need not be hidden to show any other custom message/panel&lt;/CODE&gt;. The table itself should be reduced in height. &lt;/P&gt;

&lt;P&gt;Attached is the screenshot of a Table with No Results Found, which consumes a lot of space.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5697i81628B94C29E671F/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;PS: Documenting answer from Slack to Splunk Answers for future reference.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Sep 2018 22:56:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437885#M124687</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-09-01T22:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437886#M124688</link>
      <description>&lt;P&gt;An ideal approach would be to use &lt;CODE&gt;depends&lt;/CODE&gt; and &lt;CODE&gt;rejects&lt;/CODE&gt; attributes based on token which is either set or unset depending upon results returned from search or no results case (through &lt;CODE&gt;job.resultCount&lt;/CODE&gt; predefined Search Event Handler Token).  Refer to Splunk Documentation: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Search_tokens_for_dynamic_display_example"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Search_tokens_for_dynamic_display_example&lt;/A&gt; Or &lt;CODE&gt;Null Search Swapper&lt;/CODE&gt; example in the &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Examples&lt;/A&gt; App.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;However, since the ask is to display the table but reduce the height, similar approach will be used but instead of hiding the table and showing a custom panel, it will be used to apply custom CSS override.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Following run anywhere example uses:&lt;/P&gt;

&lt;P&gt;1) A hidden &lt;CODE&gt;&amp;lt;html&amp;gt;&lt;/CODE&gt; panel to apply CSS for dashboard. The tokens &lt;CODE&gt;$tokHeight$&lt;/CODE&gt; and &lt;CODE&gt;$tokAlertInfoTop$&lt;/CODE&gt;, have been used to set the table height and push the &lt;CODE&gt;No Result Found&lt;/CODE&gt; message a bit up in the table with reduced height.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          #myTable .splunk-table{
            $tokHeight$
          }
          #myTable .alert-info{
            $tokAlertInfoTop$
          }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2) The &lt;CODE&gt;&amp;lt;done&amp;gt;&lt;/CODE&gt; Search Event Handler is used to access predefined Search Job token i.e. &lt;CODE&gt;$job.resultCount$&lt;/CODE&gt; which is 0 when No Results are returned and &amp;gt;0 otherwise. The tokens for CSS override are set accordingly, if no results are found, otherwise the tokens remain blank.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          &amp;lt;done&amp;gt;
            &amp;lt;condition match="$job.resultCount$==0"&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;height: 50px !important;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;position:relative; top:-130px !important;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Table With Results&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5695i5ED644AB825469E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;STRONG&gt;Table Without Results: Top Table for Error Count By Component has height reduced&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/5696iA0CB28ED8D255BA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the complete Simple XML Code.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Panel Table Height change on No Result Found&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;&amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          .dashboard-row .dashboard-panel .panel-head h3{
            text-align:center !important;
            color:white !important;
            font-weight: bold !important;
            background:black !important;
          }
          #myTable .splunk-table{
            $tokHeight$
          }
          #myTable .alert-info{
            $tokAlertInfoTop$
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;      
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;input type="time" token="tokTime" searchWhenChanged="true"&amp;gt;
        &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
        &amp;lt;default&amp;gt;
          &amp;lt;earliest&amp;gt;-1s@s&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/default&amp;gt;
      &amp;lt;/input&amp;gt;
      &amp;lt;table id="myTable"&amp;gt;
        &amp;lt;title&amp;gt;Error Count By Component&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=ERROR
| stats count by component&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
          &amp;lt;done&amp;gt;
            &amp;lt;condition match="$job.resultCount$==0"&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;height: 50px !important;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;position:relative; top:-130px !important;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition&amp;gt;
              &amp;lt;set token="tokHeight"&amp;gt;&amp;lt;/set&amp;gt;
              &amp;lt;set token="tokAlertInfoTop"&amp;gt;&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/done&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
    &amp;lt;row&amp;gt;    
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Splunk Internal Activity by Component&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal sourcetype=splunkd log_level!=INFO
| stats count by component&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$tokTime.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$tokTime.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 01 Sep 2018 23:16:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437886#M124688</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-09-01T23:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437887#M124689</link>
      <description>&lt;P&gt;I know it's lazy, but just adding this to your XML works (it just blindly resizes any DIV elements that contain the same class as the "No results found." and "Search did not return any events." messages on the page; the DIVs with results then "push" them to be taller):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;html&amp;gt;
         &amp;lt;style&amp;gt;
            .msg {
              height:30px !important;
            }
            .splunk-viz-msg {
              height:30px !important;
            }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;      
     &amp;lt;/panel&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However, if you do have other "message" panels in your dashboard, it will resize them as well.&lt;BR /&gt;
,I know it's lazy, but just adding this to your XML works (it just blindly resizes the DIV elements that contain the "No results found." and "Search did not return any events." messages on the page):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;html&amp;gt;
         &amp;lt;style&amp;gt;
            .msg {
              height:30px !important;
            }
            .splunk-viz-msg {
              height:30px !important;
            }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;      
     &amp;lt;/panel&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However, if you do have other "message" panels in your dashboard, it will resize them as well.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 00:04:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/437887#M124689</guid>
      <dc:creator>oleksiyg</dc:creator>
      <dc:date>2019-10-29T00:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/513926#M144239</link>
      <description>&lt;P&gt;For anyone else, if you're using an events table, replace ".splunk-table" with ".&lt;SPAN&gt;splunk-events-viewer".&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2020 14:33:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/513926#M144239</guid>
      <dc:creator>benhooper</dc:creator>
      <dc:date>2020-08-13T14:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648180#M224297</link>
      <description>&lt;P&gt;This solution doesn't work anymore. We're on Splunk Cloud version 9.0.2303.201. Hopefully it's just a simple update that's needed?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 08:59:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648180#M224297</guid>
      <dc:creator>gabriel_vasseur</dc:creator>
      <dc:date>2023-06-26T08:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648184#M224298</link>
      <description>&lt;P&gt;Can you create a new question and refer to this as not working anymore?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 09:36:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648184#M224298</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2023-06-26T09:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a table that reduces in height when your dashboard search returns no results?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648203#M224302</link>
      <description>&lt;P&gt;Done:&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-change-a-Simple-XML-table-height-when-no-results-is-found/m-p/648202#M53035" target="_blank"&gt;How to change a Simple XML table height when no re... - Splunk Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 13:45:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-make-a-table-that-reduces-in-height-when-your/m-p/648203#M224302</guid>
      <dc:creator>gabriel_vasseur</dc:creator>
      <dc:date>2023-06-26T13:45:11Z</dc:date>
    </item>
  </channel>
</rss>

