Dashboards & Visualizations

Can you help me with a checkbox with 2 tokens that populates a search?

mwdbhyat
Builder

Hi there,

I have a checkbox that I want to have 2 tokens to populate a search.

So when it's ticked(default) it must populate my dashboard search with one value, and if the user unticks it, then I want it to insert another value for the search.

Any thoughts on how to do this?

Thanks!

0 Karma
1 Solution

vnravikumar
Champion

Hi

Try like

<form>
  <label>checkboxtoken</label>
  <fieldset submitButton="false">
    <input type="checkbox" token="field1">
      <label>field1</label>
      <choice value="sample">sample</choice>
      <change>
        <condition value="sample">
          <set token="token1">value1</set>
          <unset token="token2"></unset>
        </condition>
        <condition>
          <set token="token2">value2</set>
          <unset token="token1"></unset>
        </condition>
      </change>
      <initialValue>sample</initialValue>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>

OR

with single token

<form>
  <label>checkboxtoken</label>
  <fieldset submitButton="false">
    <input type="checkbox" token="field1">
      <label>field1</label>
      <choice value="sample">sample</choice>
      <change>
        <condition value="sample">
          <set token="token1">value1</set>
        </condition>
        <condition>
          <set token="token1">value2</set>
        </condition>
      </change>
      <initialValue>sample</initialValue>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>

View solution in original post

vnravikumar
Champion

Hi

Try like

<form>
  <label>checkboxtoken</label>
  <fieldset submitButton="false">
    <input type="checkbox" token="field1">
      <label>field1</label>
      <choice value="sample">sample</choice>
      <change>
        <condition value="sample">
          <set token="token1">value1</set>
          <unset token="token2"></unset>
        </condition>
        <condition>
          <set token="token2">value2</set>
          <unset token="token1"></unset>
        </condition>
      </change>
      <initialValue>sample</initialValue>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>

OR

with single token

<form>
  <label>checkboxtoken</label>
  <fieldset submitButton="false">
    <input type="checkbox" token="field1">
      <label>field1</label>
      <choice value="sample">sample</choice>
      <change>
        <condition value="sample">
          <set token="token1">value1</set>
        </condition>
        <condition>
          <set token="token1">value2</set>
        </condition>
      </change>
      <initialValue>sample</initialValue>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>

mwdbhyat
Builder

Thanks that worked!

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...