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!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...