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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...