Splunk Search

Match condition to unset a token based on value in input field

praphulla1
Path Finder

I am trying to clear a input field based on user's input. I am able to clear input field by using unset form.token

I have added condition on unset by comparing with another toke. For some reason the condition does not work.

Below is my sample test code. I am not able to understand if there's a issue with my match condition.

<form>
  <label>My Test Dashboard Pra</label>
  <description>This is developer test dashboard</description>
  <fieldset submitButton="false">
    <input type="multiselect" token="field1">
      <label>field1</label>
      <choice value="1">One</choice>
      <choice value="2">Two</choice>
      <choice value="3">Three</choice>
      <choice value="*">ALL</choice>
      <default>*</default>
      <change>
        <condition match="$field3$==0">
          <unset token="form.field2"></unset>
        </condition>
      </change>
    </input>
    <input type="multiselect" token="field2">
      <label>field2</label>
      <choice value="10">Ten</choice>
      <choice value="20">Twenty</choice>
      <choice value="*">ALL</choice>
      <default>*</default>
    </input>
    <input type="checkbox" token="field3">
      <label>field3</label>
      <choice value="0">Clear input on change</choice>
      <default>0</default>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>field1 = $field1$   field2 = $field2$ field3 == $field3$</title>
      <table>
        <title>Test Panel</title>
        <search>
          <query/>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</form>
0 Karma
1 Solution

spavin
Path Finder

If you tweak the match condition on line 13 slightly it will give you what you're looking for:

        <condition match=" $field3$ == &quot;0&quot;">

This is testing to see if $field3$ is equal to the string "0", rather than to the integer 0.

Check out the examples from docs:
https://docs.splunk.com/Documentation/Splunk/7.2.4/Viz/tokens#Define_tokens_for_conditional_operatio...

View solution in original post

0 Karma

spavin
Path Finder

If you tweak the match condition on line 13 slightly it will give you what you're looking for:

        <condition match=" $field3$ == &quot;0&quot;">

This is testing to see if $field3$ is equal to the string "0", rather than to the integer 0.

Check out the examples from docs:
https://docs.splunk.com/Documentation/Splunk/7.2.4/Viz/tokens#Define_tokens_for_conditional_operatio...

0 Karma

praphulla1
Path Finder

@spavin Thank you.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...