<?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: I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table . in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321980#M20716</link>
    <description>&lt;P&gt;@chitreshakumar , sorry I was testing few things on local machine using &lt;CODE&gt;&amp;lt;init&amp;gt;&lt;/CODE&gt; to default token, so did not have form token to reset in local &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Glad you were able to figure out. (Y)&lt;/P&gt;

&lt;P&gt;Only two changes you needed were to 1) convert Link input to Checkbox and (2) unset check box value also after unsetting the remaining tokens.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Dec 2017 13:25:17 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-12-06T13:25:17Z</dc:date>
    <item>
      <title>I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table .</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321977#M20713</link>
      <description>&lt;P&gt;I have a multi-select Drilldown input in XML format .The page has pie chart when u click on the value it drills down those values to a table .I want to reset it everytime whenever I select the clear filter button on the page .I have written one XML code .&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="link" token="reset_tok" searchWhenChanged="true" depends="global_active_search"&amp;gt;
        &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
        &amp;lt;choice value="reset"&amp;gt;Clear Filters&amp;lt;/choice&amp;gt;
        &amp;lt;change&amp;gt;
          &amp;lt;set token="reset_tok"&amp;gt;*&amp;lt;/set&amp;gt;
           &amp;lt;unset token="form.asset_id"&amp;gt;&amp;lt;/unset&amp;gt;
           &amp;lt;unset token="form.ticket_type"&amp;gt;&amp;lt;/unset&amp;gt;
           &amp;lt;unset token="form.owner_names"&amp;gt;&amp;lt;/unset&amp;gt;
           &amp;lt;unset token="form.config_item"&amp;gt;&amp;lt;/unset&amp;gt;
           &amp;lt;unset token="form.crossapplication"&amp;gt;&amp;lt;/unset&amp;gt;
          &amp;lt;unset token="form.bucket_label"&amp;gt;&amp;lt;/unset&amp;gt;
          &amp;lt;set token="form.time.earliest"&amp;gt;-13mon@mon&amp;lt;/set&amp;gt;
          &amp;lt;set token="form.time.latest"&amp;gt;@mon&amp;lt;/set&amp;gt;
         &amp;lt;/change&amp;gt;
      &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But I am able to clear or unset the token only once .What should be done if I want it to be clearing the token whenever I select??&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 10:39:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321977#M20713</guid>
      <dc:creator>chitreshakumar</dc:creator>
      <dc:date>2017-12-06T10:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table .</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321978#M20714</link>
      <description>&lt;P&gt;@chitreshakumar, please try the following checkbox input instead of link. Ideally you should add Reset button through HTML panel and code token unset through Simple XML JS Extension.&lt;/P&gt;

&lt;P&gt;PS: Checking &lt;CODE&gt;Clear Tokens&lt;/CODE&gt; resets the token and then removes the check (unsets the checkbox form token after unsetting other tokens i.e. &lt;CODE&gt;&amp;lt;unset token="tokClear"&amp;gt;&amp;lt;/unset&amp;gt;&amp;lt;unset token="form.tokClear"&amp;gt;&amp;lt;/unset&amp;gt;&lt;/CODE&gt; )&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;input type="checkbox" token="tokClear" searchWhenChanged="true"&amp;gt;
    &amp;lt;label&amp;gt;&amp;lt;/label&amp;gt;
    &amp;lt;change&amp;gt;
      &amp;lt;condition value="reset"&amp;gt;
        &amp;lt;unset token="asset_id"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="ticket_type"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="owner_names"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="config_item"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="crossapplication"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="bucket_label"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="reset_tok"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="form.reset_tok"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;set token="time.earliest"&amp;gt;-13mon@mon&amp;lt;/set&amp;gt;
        &amp;lt;set token="time.latest"&amp;gt;@mon&amp;lt;/set&amp;gt;
        &amp;lt;unset token="tokClear"&amp;gt;&amp;lt;/unset&amp;gt;
        &amp;lt;unset token="form.tokClear"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/condition&amp;gt;
    &amp;lt;/change&amp;gt;
    &amp;lt;choice value="reset"&amp;gt;Clear Tokens&amp;lt;/choice&amp;gt;
    &amp;lt;delimiter&amp;gt; &amp;lt;/delimiter&amp;gt;
  &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 12:17:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321978#M20714</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-06T12:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table .</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321979#M20715</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt; !! Thanks for answering!!&lt;BR /&gt;
It worked after I added form to asset_id  .One more thing I would like to add "I have a pie chart when I click on one of the values of pie ,it shows the values corresponding to that "These tokens are corresponding to those pie charts .&lt;BR /&gt;
&lt;CODE&gt;&lt;BR /&gt;
         &amp;lt;unset token="bucket_label"&amp;gt;&amp;lt;/unset&amp;gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:05:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321979#M20715</guid>
      <dc:creator>chitreshakumar</dc:creator>
      <dc:date>2020-09-29T17:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table .</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321980#M20716</link>
      <description>&lt;P&gt;@chitreshakumar , sorry I was testing few things on local machine using &lt;CODE&gt;&amp;lt;init&amp;gt;&lt;/CODE&gt; to default token, so did not have form token to reset in local &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Glad you were able to figure out. (Y)&lt;/P&gt;

&lt;P&gt;Only two changes you needed were to 1) convert Link input to Checkbox and (2) unset check box value also after unsetting the remaining tokens.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 13:25:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321980#M20716</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-06T13:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: I have  multi-select Drilldown inputs in XML format .The page has pie chart when u click on the value it drills down those values to a table .</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321981#M20717</link>
      <description>&lt;P&gt;Thanks man!! It worked &lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 13:26:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/I-have-multi-select-Drilldown-inputs-in-XML-format-The-page-has/m-p/321981#M20717</guid>
      <dc:creator>chitreshakumar</dc:creator>
      <dc:date>2017-12-06T13:26:57Z</dc:date>
    </item>
  </channel>
</rss>

