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!

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...