Getting Data In

Dropdown List

Jasmine
Path Finder

Based on the value from one dropdownlist i am hiding other drop downlist.(based on condition doing unset the token of 2nd ddl).. Although the dropdownlist got hidden, still value getting passed if we already chosen some value. Initial value set to be 'All'

Labels (1)
Tags (1)
0 Karma

woodcock
Esteemed Legend

Read the docs or forms and simplexml.  You can just "unset" the control's form and value manually to force it to reset to it's default value.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Tokens will persist even if the drop down list is no longer visible - you could try unsetting the token when the input is hidden. You have already been shown how to do this.

0 Karma

Jasmine
Path Finder

i have tried as below. but didnt work.

code for ddl1

<input type="dropdown" token="ddl1" searchWhenChanged="true">
      <label>Type</label>
      <choice value="*">All</choice>
       <change>
         <condition value="Manager">
             <set token="show_address">true</set>
        </condition>
        <condition value="All">
             <set token="show_address">true</set>
        </condition>
        <condition value="Admin">
             <unset token="show_address"></unset>
        </condition>
       </change>

<initialValue>*</initialValue>
      <default>*</default>

ddl2 is as below:

<input type="dropdown" token="ddl2" depends="$show_address$" searchWhenChanged="true">

value getting passed when ddl2 is hidden and when ddl  is with "Admin"

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...