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!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...