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!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...