Dashboards & Visualizations

How can I have a dropdown in a form that is loaded with only predefined values ?

fere
Path Finder

I need to populate a dropdown box in a form with a list of predefined values (action_value & action_name pairs). This is a fixed set of values that are NOT based on any search. Is there anyway to that?
Thanks in advance

Tags (2)
0 Karma
1 Solution

lguinn2
Legend

In simple XML, use a list of <choice> tags in your input - here is an example

<fieldset>
    <input type="dropdown" token="email">
        <label>Select a user</label>
        <choice value="*">Any</choice>
        <choice value="happy@demo.com">Happy</choice>
        <choice value="sleepy@demp.com">Sleepy</choice>
    </input>
</fieldset>

View solution in original post

lguinn2
Legend

In simple XML, use a list of <choice> tags in your input - here is an example

<fieldset>
    <input type="dropdown" token="email">
        <label>Select a user</label>
        <choice value="*">Any</choice>
        <choice value="happy@demo.com">Happy</choice>
        <choice value="sleepy@demp.com">Sleepy</choice>
    </input>
</fieldset>

smolcj
Builder

what if we need to populate a search for dropdown values in advance xml?

0 Karma

lguinn2
Legend

In advanced XML, you will need to do something like the following, where you create a <list> element for each item in the drop-down list.

  <module name="SearchSelectLister">
    <param name="staticFieldsToDisplay">
      <list>
        <param name="value">*</param>
        <param name="label">Any</param>
      </list>
    </param>
0 Karma

dennywebb
Path Finder

what about in advanced XML?

0 Karma

fere
Path Finder

Thanks, it worked!

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