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!

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...