Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JENKINS-63931] change section to advanced tag for ExtendedChoiceParameterDefinition #33

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<f:checkbox checked="${instance.quoteValue}"/>
</f:entry>

<f:section title="Choose Source for Value">
<f:advanced title="Choose Source for Value">
<f:radioBlock name="propertySource" title="Value" value="0" checked="${parameterType eq 'basic' and empty instance.propertyFile and not empty instance.value}">
<f:entry title="Value" field="propertyValue">
<f:textbox value="${instance.value}"/>
Expand Down Expand Up @@ -132,9 +132,9 @@
</f:entry>
</f:advanced>
</f:radioBlock>
</f:section>
</f:advanced>

<f:section title="Choose Source for Default Value">
<f:advanced title="Choose Source for Default Value">
<f:radioBlock name="defaultPropertySource" title="Default Value" value="0" checked="${parameterType eq 'basic' and not empty instance.defaultValue}">
<f:entry field="defaultPropertyValue">
<f:textbox value="${instance.defaultValue}"/>
Expand Down Expand Up @@ -177,9 +177,9 @@
</f:entry>
</f:advanced>
</f:radioBlock>
</f:section>
</f:advanced>

<f:section title="Choose Source for Value Description">
<f:advanced title="Choose Source for Value Description">
<f:radioBlock name="descriptionPropertySource" title="Description" value="0" checked="${parameterType eq 'basic' and not empty instance.descriptionPropertyValue}">
<f:entry field="descriptionPropertyValue">
<f:textbox value="${instance.descriptionPropertyValue}"/>
Expand Down Expand Up @@ -222,7 +222,7 @@
</f:entry>
</f:advanced>
</f:radioBlock>
</f:section>
</f:advanced>
</f:radioBlock>
<f:radioBlock name="parameterGroup" title="Multi-level Parameter Types" value="1" checked="${parameterType eq 'multilevel'}">
<f:entry name="type" title="Parameter Type" field="type">
Expand Down