<?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: Is there a xml tag that can have multiple rows inside it? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653795#M53763</link>
    <description>&lt;P&gt;The tabs at the top of the app are controlled by the Navigation menu.&amp;nbsp; Tokens are not sharable between entries in the menu.&lt;/P&gt;&lt;P&gt;Another option is a dashboard with drilldowns to other dashboards. Tokens can be passed from the mother dashboard to the drilldown dashboards.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2023 18:25:24 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2023-08-09T18:25:24Z</dc:date>
    <item>
      <title>Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653596#M53734</link>
      <description>&lt;P&gt;Hey guys,&amp;nbsp;&lt;BR /&gt;Hope you're having a great day!&lt;/P&gt;&lt;P&gt;Basically, I want to show/hide multiple sets of rows and panels depending on the main drop-down selected.&lt;BR /&gt;Is there a &amp;lt;section depends=$choice1$&amp;gt; &amp;lt;/section&amp;gt; kind of tag that can have multiple rows inside it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now my only workaround is to display a link to that specific dashboard.&lt;BR /&gt;I want to be able to basically merge all these dashboards into one and then just select by the main drop down.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 17:34:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653596#M53734</guid>
      <dc:creator>ConsoleBotTryPC</dc:creator>
      <dc:date>2023-08-08T17:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653637#M53745</link>
      <description>&lt;P&gt;depends works on the presence or absence of a token, not on the value, so basically, what you are asking for can't be done that way.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 22:36:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653637#M53745</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-08T22:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653641#M53746</link>
      <description>&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;depends&lt;/FONT&gt; option can be used on the &lt;FONT face="courier new,courier"&gt;input&lt;/FONT&gt;, &lt;FONT face="courier new,courier"&gt;row&lt;/FONT&gt;, &lt;FONT face="courier new,courier"&gt;panel&lt;/FONT&gt;, &lt;FONT face="courier new,courier"&gt;search&lt;/FONT&gt;, and visualization elements to control when the element is displayed.&amp;nbsp; The dashboard element cannot have a depends option.&lt;/P&gt;&lt;P&gt;There can be only one &lt;FONT face="courier new,courier"&gt;&amp;lt;dashboard&amp;gt;&lt;/FONT&gt; element in a dashboard so the idea of merging several dashboards into one will require refactoring of them.&amp;nbsp; Consider instead using a Navigation menu to allow the user to select which dashboard to view.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 23:56:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653641#M53746</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-08-08T23:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653644#M53749</link>
      <description>&lt;P&gt;You can do it like this - have your input with the dropdown and then use the &amp;lt;change&amp;gt; element to set/clear the appropriate section_X tokens based on the choice made.&lt;/P&gt;&lt;P&gt;Here when you select a section, it will set the section_X token for the section chosen and clear the others (null() in the eval statement). Define an &amp;lt;eval token="section_X"&amp;gt; for each section you want to define.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;panels&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="section" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Section&amp;lt;/label&amp;gt;
      &amp;lt;choice value="s1"&amp;gt;Section 1&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="s2"&amp;gt;Section 2&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="s3"&amp;gt;Section 3&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;eval token="section_1"&amp;gt;if($value$="s1", "true", null())&amp;lt;/eval&amp;gt;
        &amp;lt;eval token="section_2"&amp;gt;if($value$="s2", "true", null())&amp;lt;/eval&amp;gt;
        &amp;lt;eval token="section_3"&amp;gt;if($value$="s3", "true", null())&amp;lt;/eval&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$section_1$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | makeresults
            | fields - _time
            | eval Section="SECTION 1"
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&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 depends="$section_2$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | makeresults
            | fields - _time
            | eval Section="SECTION 2"
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&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 depends="$section_3$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | makeresults
            | fields - _time
            | eval Section="SECTION 3"
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;100&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;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 01:20:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653644#M53749</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-08-09T01:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653780#M53761</link>
      <description>&lt;P&gt;Yup, this is what I currently have set up for multiple dashboards. (Currently main dashboard is called user lookup and takes all these info-tokens to individual dashboards via links, where each have their own dropdowns/multiselects to clear the clutter in that category.)&lt;BR /&gt;&lt;BR /&gt;I wanted a drop down/multiselect envoloping all these smaller dashboards&amp;nbsp;&lt;BR /&gt;like&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;common input fields like email&amp;gt;
&amp;lt;MaindropdownCode&amp;gt;Main_opt1,Main_opt2,Main_opt3&amp;lt;/MaindropdownCode&amp;gt;

&amp;lt;section depends=$Main_opt1$&amp;gt;
  &amp;lt;sub inputs&amp;gt;
  &amp;lt;sub dropdownCode&amp;gt; sub_opt1, sub_opt2, ... &amp;lt;/&amp;gt;
  &amp;lt;row depends=sub_opt1&amp;gt;
    &amp;lt;panel ...&amp;gt;&amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row depends=sub_opt2&amp;gt;
    ....
  &amp;lt;/row&amp;gt;
  ...
&amp;lt;/section&amp;gt;
&amp;lt;section depends=Main_opt2&amp;gt;
  ....
&amp;lt;/section&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;---&lt;BR /&gt;Anyways I'll prob try the navigation route (from another comment) and see if that works.&lt;BR /&gt;Thanks anyways!&lt;BR /&gt;&lt;BR /&gt;Have a nice day!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 17:48:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653780#M53761</guid>
      <dc:creator>ConsoleBotTryPC</dc:creator>
      <dc:date>2023-08-09T17:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653782#M53762</link>
      <description>&lt;P&gt;By dashboard do you mean like the main tabs at top of an app?&lt;BR /&gt;Are tokens sharable between them?&lt;BR /&gt;&lt;BR /&gt;Will probably look into having something similar to navigation tabs within the dashboard for token sharing.&lt;BR /&gt;&lt;BR /&gt;Anyways I'll look into it, thanks!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 17:51:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653782#M53762</guid>
      <dc:creator>ConsoleBotTryPC</dc:creator>
      <dc:date>2023-08-09T17:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653795#M53763</link>
      <description>&lt;P&gt;The tabs at the top of the app are controlled by the Navigation menu.&amp;nbsp; Tokens are not sharable between entries in the menu.&lt;/P&gt;&lt;P&gt;Another option is a dashboard with drilldowns to other dashboards. Tokens can be passed from the mother dashboard to the drilldown dashboards.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 18:25:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653795#M53763</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-08-09T18:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653801#M53764</link>
      <description>&lt;P&gt;Yup, mother with children dashboard is exactly my current setup, but managing 7+ children(new tabs) is hard haha&lt;BR /&gt;&lt;BR /&gt;Wanted quick tab switching within the dashboard.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks for clearing the token sharing within navigation though!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 18:36:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653801#M53764</guid>
      <dc:creator>ConsoleBotTryPC</dc:creator>
      <dc:date>2023-08-09T18:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a xml tag that can have multiple rows inside it?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653831#M53769</link>
      <description>&lt;P&gt;If you want tab based switching, you can easily used linked list inputs, see this app for some CSS on how to show tabs in a nice way&lt;/P&gt;&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/5256" target="_blank"&gt;https://splunkbase.splunk.com/app/5256&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 23:51:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-xml-tag-that-can-have-multiple-rows-inside-it/m-p/653831#M53769</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-08-09T23:51:13Z</dc:date>
    </item>
  </channel>
</rss>

