Getting Data In

how to get a dropdown filter value based on other value selected in other dropdown filter

dtccsundar
Path Finder

for example , i have country field drop down and city field dropdown like below ,

country City
IND Chennai
US New York
UK London

when i select IND from a drop down filter ,automaticllicay Chennai should be selected(displayed) in City dropdown filter .

Can anyone help me to do this .

0 Karma

vnravikumar
Champion

Hi

Try this, I used lookups

<form>
  <label>country_city</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="country">
      <label>field1</label>
      <prefix>country="</prefix>
      <suffix>"</suffix>
      <fieldForLabel>country</fieldForLabel>
      <fieldForValue>country</fieldForValue>
      <search>
        <query>|inputlookup country.csv |table country</query>
        <earliest>-24h@h</earliest>
        <latest>now</latest>
      </search>
    </input>
    <input type="dropdown" token="city">
      <label>field2</label>
      <fieldForLabel>city</fieldForLabel>
      <fieldForValue>city</fieldForValue>
      <selectFirstChoice>true</selectFirstChoice>
      <search>
        <query>|inputlookup city.csv |search  $country$ | table city</query>
      </search>
    </input>
  </fieldset>
</form>

country.csv
country
IND
US
UK

city.csv
country,city
IND,Chennai
US,New York
UK,London

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 ...