Splunk Search

Change command is not working for checkbox

madakkas
Explorer

HI,

I am trying to assign values to the token based on the values selected in the check box.
If label="All" then I am assigning new token " t1=show all files" but this value is not been displayed in the Title .
It is displaying "$t1$" as title
But if use $Shift$ in the Title then it is showing the Values based on the checkbox clicked
Please help me in finding out the reason value is not displayed for $t1$

<input type="checkbox" token="Shift" searchWhenChanged="true">
  <label>Shift</label>
  <choice value="*">All</choice>
  <choice value="Batch Mode">Batch</choice>
  <choice value="Online Mode">Afternoon</choice>
  <default>All</default>
 <change>
    <condition label="All">
        <set token="t1">show all files</set>
        <set token="t2">testing</set>
   </condition>
  </change>
 </fieldset>

<panel>
      <title>"$t1$"</title>
Tags (1)
0 Karma

493669
Super Champion

Hi @madakkas,
Try this:

<change>
     <condition match="$Shift$==&quot;*&quot;">
         <set token="t1">show all files</set>
         <set token="t2">testing</set>
    </condition>
    <condition>
          <unset token="t1"></unset>
          <unset token="t2"></unset>
        </condition>
   </change>
0 Karma

tiagofbmm
Influencer

Hey

Checkboxes values passed to other panels is a known issue that you can find help for in this question:

https://answers.splunk.com/answers/314505/how-to-pass-selected-checkbox-values-to-drilldown.html

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...