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!

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 ...