Dashboards & Visualizations

How can I set my single/boolean checkbox value from the results of a search?

woodcock
Esteemed Legend

I am saving a boolean 0 or 1 value inside of a lookup file and I'd like to read this value and change the status of my checkbox input accordingly. I though that this would be easy or at least documented but it is neither...

Here is the essence of my dashboard:

<dashboard>
  <label>GREGG TEST CHECKBOX: https://answers.splunk.com/answers/790052/</label>;
  <search id="mybasesearch">
    <query>| makeresults | eval my_boolean = "1"</query>
    <done>
      <condition match="$result.my_boolean$==1">
        <set token="my_boolean_checkbox"></set>
        <set token="form.my_boolean_checkbox">1</set>
      </condition>
      <condition>
        <unset token="my_boolean_checkbox"></unset>
        <unset token="form.my_boolean_checkbox"></unset>
      </condition>
    </done>
    <earliest>-1s</earliest>
    <latest>now</latest>
  </search>
  <fieldset submitButton="true" autoRun="false">
    <input type="checkbox" token="my_boolean_checkbox">
      <label>Do something?</label>
      <choice value="1">Checked means "yes"</choice>
      <change>
        <condition value="1">
          <eval token="my_boolean">"1"</eval>
        </condition>
        <condition>
          <eval token="my_boolean">"0"</eval>
        </condition>
      </change>
    </input>
  </fieldset>
</dashboard>
0 Karma
1 Solution

vnravikumar
Champion

Hi @woodcock

Please check this

<form>
  <label>GREGG TEST CHECKBOX: https://answers.splunk.com/answers/790052/</label>;
  <search id="mybasesearch">
    <query>| makeresults | eval my_boolean = "1"</query>
    <done>
      <condition match="$result.my_boolean$==&quot;1&quot;">
        <set token="form.my_boolean_checkbox">1</set>
      </condition>
      <condition>
        <unset token="form.my_boolean_checkbox"></unset>
      </condition>
    </done>
    <earliest>-1s</earliest>
    <latest>now</latest>
  </search>
  <fieldset submitButton="true" autoRun="false">
    <input type="checkbox" token="my_boolean_checkbox">
      <label>Do something?</label>
      <choice value="1">Checked means "yes"</choice>
      <change>
        <condition value="1">
          <eval token="my_boolean">"1"</eval>
        </condition>
        <condition>
          <eval token="my_boolean">"0"</eval>
        </condition>
      </change>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>

View solution in original post

0 Karma

vnravikumar
Champion

Hi @woodcock

Please check this

<form>
  <label>GREGG TEST CHECKBOX: https://answers.splunk.com/answers/790052/</label>;
  <search id="mybasesearch">
    <query>| makeresults | eval my_boolean = "1"</query>
    <done>
      <condition match="$result.my_boolean$==&quot;1&quot;">
        <set token="form.my_boolean_checkbox">1</set>
      </condition>
      <condition>
        <unset token="form.my_boolean_checkbox"></unset>
      </condition>
    </done>
    <earliest>-1s</earliest>
    <latest>now</latest>
  </search>
  <fieldset submitButton="true" autoRun="false">
    <input type="checkbox" token="my_boolean_checkbox">
      <label>Do something?</label>
      <choice value="1">Checked means "yes"</choice>
      <change>
        <condition value="1">
          <eval token="my_boolean">"1"</eval>
        </condition>
        <condition>
          <eval token="my_boolean">"0"</eval>
        </condition>
      </change>
      <delimiter> </delimiter>
    </input>
  </fieldset>
</form>
0 Karma

woodcock
Esteemed Legend

IT WORKS! THANK YOU!!!!

0 Karma

vnravikumar
Champion

Welcome 🙂

0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

 Ready to master Kubernetes and cloud monitoring like the pros? Join Splunk’s Growth Engineering team for an ...

Update Your SOAR Apps for Python 3.13: What Community Developers Need to Know

To Community SOAR App Developers - we're reaching out with an important update regarding Python 3.9's ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...