27

Here I am basically looking for a dependency parameter.

Let's say I have two dropdowns in the build parameter section. Based on the value selected from the first dropdown the possible default I want the values of the second dropdown to vary.

Is there any plugin or approach to handle this requirement effectively?

Rob Kielty
  • 7,958
  • 8
  • 39
  • 51
Kishore Tamire
  • 2,054
  • 5
  • 23
  • 25

7 Answers7

15

This is exactly what you are looking for: https://github.com/biouno/uno-choice-plugin/wiki/Uno-Choice-Cascade-Dynamic-Choice-Parameter

It seems to be a hidden gem, haven't found it in any of the similar questions so far.

Torben Knerr
  • 784
  • 6
  • 15
  • 10
    Perhaps a bit late but if anyone else needs this, as noted in [this similar question](http://stackoverflow.com/questions/18393671/how-to-get-a-parameter-depend-of-other-parameter-in-hudson-or-jenkins) the plugin was shared with the Jenkins community and _officially_ renamed to [Active Choices Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin) – Morfic Oct 30 '15 at 16:35
10

Let's keep thing simple, Here is Step by Step process to achieve the required.
1.Install Active Choices Plugin in your Jenkins.
2.Add an ACTIVE CHOICE PARAMETER enter image description here

  1. Add an ACTIVE CHOICE REACTIVE PARAMETER. enter image description here

4.Click on apply and then on save.
Its done. !!!
Do comment if facing any problem with this.

Purohit Hitesh
  • 1,018
  • 16
  • 28
5

I have not used it, but it looks like the following plugin may do what you want:

A Jenkins parameter plugin that allows for two select elements. The second select populates values depending upon the selection made for the first select.

https://github.com/tekante/Dynamic-Jenkins-Parameter/wiki

5

A new plugin with this capability (and much more) is available here: https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin

The wiki page contains several usage examples and code

1

This is what you want to achieve right?

Then you could inherit hudson.model.ChoiceParameterDefinition, and override its method of getChoicesText. return the options based on whatever you want, in your situation, you could get environments from Hudson.getInstance().

Below snippets is shown how get environment variable.

Hudson.getInstance().getGlobalNodeProperties()
       .get(EnvironmentVariablesNodeProperty.class).getEnvVars().get(name);

Here is the similar question.

Community
  • 1
  • 1
MangeshBiradar
  • 3,820
  • 1
  • 23
  • 41
  • 1
    The question is about altering the list based on a parameter on the same form. I'm not sure if there is an easy to way achieve this, but I'd love to see some example code about how to do it. The way you (and the linked answer) show uses already existing information defined elsewhere, it's not altering choices dynamically based on another drop-down in the same form. – hyde Mar 27 '13 at 08:18
0

This should do the trick it lets you to single select, multiselect and do it in levels https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin

Gus
  • 573
  • 1
  • 5
  • 18
0

Here is the example, I'd like to find when I was looking for this question ;

Here is the way to create an active choice reactive parameter with Jenkins job DSL.

activeChoiceReactiveParam('PARAMETER_NAME') {
    description('Parameter description')
    filterable()
    choiceType('SINGLE_SELECT')
    groovyScript {
        script('return [ANOTHER_PARAMETER + ".suffix", ANOTHER_PARAMETER + ".suffix2"]')
        fallbackScript('return ["NotFound"]')
    }
    referencedParameter('ANOTHER_PARAMETER')
}

Note: if it doesn't work by importing job via DSL, just "Configure" and "Save". There is a bug: JENKINS-42655

Romain DEQUIDT
  • 792
  • 8
  • 15