Dashboards & Visualizations

Text input tokens that depend on each other

gustavlundberg
New Member

Hello,

I am working on a dashboard with two text inputs, with tokens "ID_token" and "application_token". I need application_token to depend on the value of ID_token in the following way:

If ID_token=*
then application_token=app_X

Else (ID_token != *)
then application_token=*

I have written this as:

<fieldset submitButton="false">
    <input type="text" token="ID_token" searchWhenChanged="true">
      <label>ID</label>
      <change>
        <condition match="'value'==&quot;*&quot;">
          <set token="application_token">app_X</set>
        </condition>
        <condition>
          <set token="application_token">*</set>
        </condition>
      </change>
      <initialValue>*</initialValue>
      <default>*</default>
    </input>
    <input type="text" token="application_token" searchWhenChanged="true">
      <label>Application</label>
      <default>app_X</default>
    </input>
  </fieldset>

The problem is that when I search for an ID=1234, nothing happens to the application_token. It just keeps having the value "app_X" all the time.

Has anyone encountered a similar problem and found a solution?

0 Karma
1 Solution

vnravikumar
Champion

Hi

Try this, use form.application_token instead of application_token

<form>
   <fieldset submitButton="false">
     <input type="text" token="ID_token" searchWhenChanged="true">
       <label>ID</label>
       <change>
         <condition match="'value'==&quot;*&quot;">
           <set token="form.application_token">app_X</set>
         </condition>
         <condition>
           <set token="form.application_token">*</set>
         </condition>
       </change>
       <initialValue>*</initialValue>
       <default>*</default>
     </input>
     <input type="text" token="application_token" searchWhenChanged="true">
       <label>Application</label>
       <default>app_X</default>
     </input>
   </fieldset>
</form>

View solution in original post

vnravikumar
Champion

Hi

Try this, use form.application_token instead of application_token

<form>
   <fieldset submitButton="false">
     <input type="text" token="ID_token" searchWhenChanged="true">
       <label>ID</label>
       <change>
         <condition match="'value'==&quot;*&quot;">
           <set token="form.application_token">app_X</set>
         </condition>
         <condition>
           <set token="form.application_token">*</set>
         </condition>
       </change>
       <initialValue>*</initialValue>
       <default>*</default>
     </input>
     <input type="text" token="application_token" searchWhenChanged="true">
       <label>Application</label>
       <default>app_X</default>
     </input>
   </fieldset>
</form>
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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