Dashboards & Visualizations

How to reset a text input to default when a drop-down input changes?

mbschriek
Explorer

Hi all,

In my dashboard, the user is able to select a specific location via a drop-down. Attached to these locations are text input fields which are filled in with default values:

<change>
        <condition value="location_1">
          <set token="default_limit">200</set>

When a user wants to change this default value, he/she can edit the text field and the actual used input for the panels will change.

<input type="text" token="text_limit" searchWhenChanged="true">
      <label>Limit (kWh):</label>
      <default>$default_limit$</default>
    </input>

Panels:

<panel>
      <single>
        <search base="sales">
          <query>| eval range>$text_limit$</query>
        </search>

However, when a user changes the drop-down location after manually adjusting the text input, the text input will remain the same instead of changing back to the default of the other location.

How can I fix this?

1 Solution

somesoni2
Revered Legend

Change

<change>
         <condition value="location_1">
           <set token="default_limit">200</set>

with

<change>
         <condition value="location_1">
           <set token="text_limit">200</set>

and remove default from the textbox.

View solution in original post

0 Karma

somesoni2
Revered Legend

Change

<change>
         <condition value="location_1">
           <set token="default_limit">200</set>

with

<change>
         <condition value="location_1">
           <set token="text_limit">200</set>

and remove default from the textbox.

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, ...