<?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 How to add dependable/dynamic radio buttons? in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573292#M10557</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to add dependable Radio button Functionality for below example.&lt;/P&gt;&lt;P&gt;When i click on 'TR DEPT' in Landscape View&amp;nbsp; then &lt;STRONG&gt;Filter&lt;/STRONG&gt; radio buttons should be displayed with '&lt;STRONG&gt;ALL'&lt;/STRONG&gt; option being selected by default. When i select 'TR Failed' option then Filter radio buttons should not be displayed and it should be hidden.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ashwini008_1-1635848562991.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/16704iD3A0C8CE87218431/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ashwini008_1-1635848562991.png" alt="Ashwini008_1-1635848562991.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me with code?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Tue, 02 Nov 2021 10:27:18 GMT</pubDate>
    <dc:creator>Ashwini008</dc:creator>
    <dc:date>2021-11-02T10:27:18Z</dc:date>
    <item>
      <title>How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573292#M10557</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to add dependable Radio button Functionality for below example.&lt;/P&gt;&lt;P&gt;When i click on 'TR DEPT' in Landscape View&amp;nbsp; then &lt;STRONG&gt;Filter&lt;/STRONG&gt; radio buttons should be displayed with '&lt;STRONG&gt;ALL'&lt;/STRONG&gt; option being selected by default. When i select 'TR Failed' option then Filter radio buttons should not be displayed and it should be hidden.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ashwini008_1-1635848562991.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/16704iD3A0C8CE87218431/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ashwini008_1-1635848562991.png" alt="Ashwini008_1-1635848562991.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me with code?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 10:27:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573292#M10557</guid>
      <dc:creator>Ashwini008</dc:creator>
      <dc:date>2021-11-02T10:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573303#M10560</link>
      <description>&lt;LI-CODE lang="markup"&gt;    &amp;lt;input type="radio" token="lv"&amp;gt;
      &amp;lt;label&amp;gt;Landscape View&amp;lt;/label&amp;gt;
      &amp;lt;choice value="TRDEPT"&amp;gt;TR DEPT&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="TRFAILED"&amp;gt;TR FAILED&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition value="TRDEPT"&amp;gt;
          &amp;lt;set token="showfilter"&amp;gt;&amp;lt;/set&amp;gt;
          &amp;lt;set token="form.filter"&amp;gt;&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition value="TRFAILED"&amp;gt;
          &amp;lt;unset token="showfilter"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="radio" token="filter" depends="$showfilter$"&amp;gt;
      &amp;lt;label&amp;gt;Filter&amp;lt;/label&amp;gt;
      &amp;lt;choice value="All"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="PRNO"&amp;gt;PR NO&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="PRSTATUS"&amp;gt;PR STATUS&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;All&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 02 Nov 2021 12:23:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573303#M10560</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-11-02T12:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573314#M10562</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;Thanks for the response.&lt;/P&gt;&lt;P&gt;When clicked on TR DEPT radio button ,'ALL' choice value is not default selected. Even if it is set to default value and initial value is true&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 13:23:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573314#M10562</guid>
      <dc:creator>Ashwini008</dc:creator>
      <dc:date>2021-11-02T13:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573316#M10563</link>
      <description>&lt;P&gt;Can you share you dashboard XML?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 13:51:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573316#M10563</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-11-02T13:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573318#M10564</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;I have used the same code which you have shared . I just added your code in new dashboard. Default is not selected for 'ALL'&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 13:54:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573318#M10564</guid>
      <dc:creator>Ashwini008</dc:creator>
      <dc:date>2021-11-02T13:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573320#M10566</link>
      <description>&lt;P&gt;Which release of splunk are you using?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 14:02:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573320#M10566</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-11-02T14:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573321#M10567</link>
      <description>&lt;P&gt;Splunk Version 7.0.0&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 14:18:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573321#M10567</guid>
      <dc:creator>Ashwini008</dc:creator>
      <dc:date>2021-11-02T14:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to add dependable/dynamic radio buttons?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573322#M10568</link>
      <description>&lt;P&gt;This is working fine in 8.0.1 version of splunk. Thank You&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 14:24:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/How-to-add-dependable-dynamic-radio-buttons/m-p/573322#M10568</guid>
      <dc:creator>Ashwini008</dc:creator>
      <dc:date>2021-11-02T14:24:40Z</dc:date>
    </item>
  </channel>
</rss>

