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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...