-
Bug
-
Resolution: Unresolved
-
Major
-
Jenkins Version 2.492.2
Active Choices Plug-in Version 2.8.6
I am using Pipeline script from SCM and define everything within including Parameters:
properties([ parameters([ ..., [ $class: 'DynamicReferenceParameter', choiceType: 'ET_FORMATTED_HIDDEN_HTML', name: 'Test', omitValueField: true, script: [ $class: 'GroovyScript', script: [ classpath: [], sandbox: true, script: """ return '''whatever ''' """ ] ] ] ]) ]) pipeline { ... }
If I run the pipeline the parameter is shown but then I save it in the config page it no longer shows up. I tried to look at config.xml in the jobs folder to see any difference but nothing.
[JENKINS-75454] Active Choices Reactive Reference Parameter of type Formatted Hidden HTML is not hidden when defined in pipeline
Pinned comments
All comments
All comments
Pinned by
David
One more thing. I use it to show and hide other parameters depending on the selection of others:
this also doesn't work until I save it in the config page.