Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
0a029fc9
Commit
0a029fc9
authored
Aug 24, 2017
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing description for jmx operation input parameters
fixes #531
parent
3dd252d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
9 deletions
+33
-9
jmxInvokeInputParameters.tpl.html
...ications-jmx/components/jmxInvokeInputParameters.tpl.html
+33
-9
No files found.
spring-boot-admin-server-ui/modules/applications-jmx/components/jmxInvokeInputParameters.tpl.html
View file @
0a029fc9
<!--
~ Copyright 2014-2017 the original author or authors.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<form
class=
"form"
>
<p>
Please input the arguments for {{$ctrl.invocation.signature}}
<small
class=
"muted"
>
: {{$ctrl.invocation.descriptor.ret}}
</small></p>
<div
class=
"control-group"
ng-repeat=
"arg in $ctrl.invocation.descriptor.args"
ng-class=
"{ error : $ctrl.arguments[$index].error }"
>
<label
class=
"control-label"
for=
"{{arg.name}}"
style=
"word-break: break-all;"
>
{{arg.name}}
<small
class=
"muted"
style=
"word-break: break-all;"
ng-bind=
"arg.type"
></small></label>
<div
class=
"controls"
>
<sba-java-type-input
sba-type=
"{{arg.type}}"
sba-decription=
"{{arg.desc}}"
sba-change=
"$ctrl.updateArg($index, value, error)"
></sba-java-type-input>
<span
class=
"help-inline"
ng-bind=
"$ctrl.arguments[$index].error"
></span>
</div>
</div>
<button
class=
"btn btn-primary"
ng-click=
"$ctrl.applyParameters()"
>
Execute
</button>
<p>
Please input the arguments for {{$ctrl.invocation.signature}}
<small
class=
"muted"
>
: {{$ctrl.invocation.descriptor.ret}}
</small>
</p>
<div
class=
"control-group"
ng-repeat=
"arg in $ctrl.invocation.descriptor.args"
ng-class=
"{ error : $ctrl.arguments[$index].error }"
>
<label
class=
"control-label"
for=
"{{arg.name}}"
style=
"word-break: break-all;"
>
{{arg.name}}
<br>
<small
class=
"muted"
style=
"word-break: break-all;"
ng-bind=
"arg.type"
></small>
</label>
<div
class=
"controls"
>
<sba-java-type-input
sba-type=
"{{arg.type}}"
sba-change=
"$ctrl.updateArg($index, value, error)"
></sba-java-type-input>
<span
class=
"help-inline"
ng-bind=
"$ctrl.arguments[$index].error"
></span>
<span
class=
"help-block"
ng-bind=
"arg.desc"
></span>
</div>
</div>
<button
class=
"btn btn-primary"
ng-click=
"$ctrl.applyParameters()"
>
Execute
</button>
</form>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment