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>
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

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