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!

Splunk Enterprise Security: Your Command Center for PCI DSS Compliance

Every security professional knows the drill. The PCI DSS audit is approaching, and suddenly everyone's asking ...

Developer Spotlight with Guilhem Marchand

From Splunk Engineer to Founder: The Journey Behind TrackMe    After spending over 12 years working full time ...

Cisco Catalyst Center Meets Splunk ITSI: From 'Payments Are Down' to Root Cause in ...

The Problem: When Networks and Services Don't Talk Payment systems fail at a retail location. Customers are ...