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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...