Knowledge Management

How to pass token form one text box to another text box?

manjuase
Explorer

Hi,

I have two text boxes textbox1 with token name 'texttok' and

textbox2 with token name 'cputok'

Now, i want to set 'cputok' token with the value of 'texttok' when that 'texttok' token met some condition.

Any suggestion?

Tags (1)
0 Karma

niketn
Legend

As far as you are not going to set the value from the second text box, you can use initialValue and default properties of the second text box to fetch value from first text box on its change event.

In the following example I am looking for Text Box 1 value to be test to be populated to second text box.

<input type="text" token="textBox1" searchWhenChanged="true">
   <label>Text Box 1</label>
   <change>
       <condition match="$value$==&quot;test&quot;">
            <set token="texttok">$value$</set>
       </condition>
   </change>
</input>
<input type="text" token="cputok" searchWhenChanged="true">
   <label>Text Box 2</label>
   <default>$texttok$</default>
   <initialValue>$texttok$</initialValue>
</input>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
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 ...