Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JeeSpringCloud
Commits
e2a64d42
Commit
e2a64d42
authored
Nov 12, 2018
by
Huang
Browse files
no commit message
parent
0844dd86
Changes
414
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 414+
files are displayed.
Plain diff
Email patch
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/form-properties-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
>
{{'PROPERTY.FORMPROPERTIES.VALUE' | translate:property.value.formProperties}}
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.FORMPROPERTIES.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/form-properties-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"KisBpmFormPropertiesPopupCtrl"
>
<div
class=
"modal-dialog modal-wide"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h2>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h2>
</div>
<div
class=
"modal-body"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-6"
>
<div
ng-if=
"translationsRetrieved"
class=
"default-grid"
ng-grid=
"gridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.UP' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"movePropertyUp()"
><i
class=
"glyphicon glyphicon-arrow-up"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.DOWN' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"movePropertyDown()"
><i
class=
"glyphicon glyphicon-arrow-down"
></i></a>
</div>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.ADD' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewProperty()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.REMOVE' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeProperty()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-6"
>
<div
ng-show=
"selectedProperties.length > 0"
>
<div
class=
"form-group"
>
<label
for=
"idField"
>
{{'PROPERTY.FORMPROPERTIES.ID' | translate}}
</label>
<input
id=
"idField"
class=
"form-control"
type=
"text"
ng-model=
"selectedProperties[0].id"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.ID.PLACEHOLDER' | translate }}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"nameField"
>
{{'PROPERTY.FORMPROPERTIES.NAME' | translate}}
</label>
<input
id=
"nameField"
class=
"form-control"
type=
"text"
ng-model=
"selectedProperties[0].name"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.NAME.PLACEHOLDER' | translate }}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"typeField"
>
{{'PROPERTY.FORMPROPERTIES.TYPE' | translate}}
</label>
<select
id=
"typeField"
class=
"form-control"
ng-model=
"selectedProperties[0].type"
ng-change=
"propertyTypeChanged()"
>
<option>
string
</option>
<option>
long
</option>
<option>
boolean
</option>
<option>
date
</option>
<option>
enum
</option>
</select>
</div>
<div
class=
"form-group"
ng-show=
"selectedProperties[0].datePattern"
>
<label
for=
"datePatternField"
>
{{'PROPERTY.FORMPROPERTIES.DATEPATTERN' | translate}}
</label>
<input
id=
"datePatternField"
class=
"form-control"
type=
"text"
ng-model=
"selectedProperties[0].datePattern"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.DATEPATTERN.PLACEHOLDER' | translate }}"
/>
</div>
<div
ng-if=
"selectedProperties[0].type == 'enum'"
style=
"padding-bottom:10px"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-6"
>
<div
ng-if=
"translationsRetrieved"
class=
"kis-listener-grid"
ng-grid=
"enumGridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.MOVE.UP | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveEnumValueUp()"
><i
class=
"glyphicon glyphicon-arrow-up"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.MOVE.DOWN | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveEnumValueDown()"
><i
class=
"glyphicon glyphicon-arrow-down"
></i></a>
</div>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.ADD | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewEnumValue()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.REMOVE | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeEnumValue()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-6"
>
<div
ng-show=
"selectedEnumValues.length > 0"
>
<div
class=
"form-group"
>
<label
for=
"classField"
>
{{'PROPERTY.FORMPROPERTIES.VALUES.ID' | translate}}
</label>
<input
type=
"text"
id=
"classField"
class=
"form-control"
ng-model=
"selectedEnumValues[0].id"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.VALUES.ID.PLACEHOLDER' | translate}}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"classField"
>
{{'PROPERTY.FORMPROPERTIES.VALUES.NAME' | translate}}
</label>
<input
type=
"text"
id=
"classField"
class=
"form-control"
ng-model=
"selectedEnumValues[0].name"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.VALUES.NAME.PLACEHOLDER' | translate}}"
/>
</div>
</div>
<div
ng-show=
"selectedEnumValues.length == 0"
class=
"muted no-property-selected"
translate
>
PROPERTY.FORMPROPERTIES.ENUMVALUES.EMPTY
</div>
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"expressionField"
>
{{'PROPERTY.FORMPROPERTIES.EXPRESSION' | translate}}
</label>
<input
id=
"expressionField"
class=
"form-control"
type=
"text"
ng-model=
"selectedProperties[0].expression"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.EXPRESSION.PLACEHOLDER' | translate }}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"variableField"
>
{{'PROPERTY.FORMPROPERTIES.VARIABLE' | translate}}
</label>
<input
id=
"variableField"
class=
"form-control"
type=
"text"
ng-model=
"selectedProperties[0].variable"
placeholder=
"{{'PROPERTY.FORMPROPERTIES.VARIABLE.PLACEHOLDER' | translate }}"
/>
</div>
<div
class=
"form-inline"
>
<div
class=
"form-group col-xs-2"
>
<label
for=
"requiredField"
>
{{'PROPERTY.FORMPROPERTIES.REQUIRED' | translate}}
</label>
<input
id=
"requiredField"
class=
"form-control"
type=
"checkbox"
ng-model=
"selectedProperties[0].required"
/>
</div>
<div
class=
"form-group col-xs-2"
>
<label
for=
"readableField"
>
{{'PROPERTY.FORMPROPERTIES.READABLE' | translate}}
</label>
<input
id=
"readableField"
class=
"form-control"
type=
"checkbox"
ng-model=
"selectedProperties[0].readable"
/>
</div>
<div
class=
"form-group col-xs-2"
>
<label
for=
"writableField"
>
{{'PROPERTY.FORMPROPERTIES.WRITABLE' | translate}}
</label>
<input
id=
"writableField"
class=
"form-control"
type=
"checkbox"
ng-model=
"selectedProperties[0].writable"
/>
</div>
</div>
</div>
<div
ng-show=
"selectedProperties.length == 0"
class=
"muted no-property-selected"
translate
>
PROPERTY.FORMPROPERTIES.EMPTY
</div>
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/form-properties-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"KisBpmFormPropertiesCtrl"
>
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/in-parameters-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
>
{{'PROPERTY.INPARAMETERS.VALUE' | translate:property.value.inParameters}}
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.INPARAMETERS.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/in-parameters-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"KisBpmInParametersPopupCtrl"
>
<div
class=
"modal-dialog modal-wide"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h2>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h2>
</div>
<div
class=
"modal-body"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-6"
>
<div
ng-if=
"translationsRetrieved"
class=
"kis-listener-grid"
ng-grid=
"gridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.UP' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveParameterUp()"
><i
class=
"glyphicon glyphicon-arrow-up"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.DOWN' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveParameterDown()"
><i
class=
"glyphicon glyphicon-arrow-down"
></i></a>
</div>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.ADD' | translate:property}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewParameter()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.REMOVE' | translate:property}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeParameter()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-6"
>
<div
ng-show=
"selectedParameters.length > 0"
>
<div
class=
"form-group"
>
<label
for=
"sourceField"
>
{{'PROPERTY.PARAMETER.SOURCE' | translate}}
</label>
<input
type=
"text"
id=
"sourceField"
class=
"form-control"
ng-model=
"selectedParameters[0].source"
placeholder=
"{{'PROPERTY.PARAMETER.SOURCE.PLACEHOLDER' | translate}}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"expressionField"
>
{{'PROPERTY.PARAMETER.SOURCEEXPRESSION' | translate}}
</label>
<input
type=
"text"
id=
"expressionField"
class=
"form-control"
ng-model=
"selectedParameters[0].sourceExpression"
placeholder=
"{{'PROPERTY.PARAMETER.SOURCEEXPRESSION.PLACEHOLDER' | translate}}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"expressionField"
>
{{'PROPERTY.PARAMETER.TARGET' | translate}}
</label>
<input
type=
"text"
id=
"expressionField"
class=
"form-control"
ng-model=
"selectedParameters[0].target"
placeholder=
"{{'PROPERTY.PARAMETER.TARGET.PLACEHOLDER' | translate}}"
/>
</div>
</div>
<div
ng-show=
"selectedParameters.length == 0"
class=
"muted no-property-selected"
translate
>
PROPERTY.PARAMETER.EMPTY
</div>
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/in-parameters-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"KisBpmInParametersCtrl"
>
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/message-definitions-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
>
{{'PROPERTY.MESSAGEDEFINITIONS.DISPLAY' | translate:property.value}}
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.MESSAGEDEFINITIONS.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/message-definitions-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"ActivitiMessageDefinitionsPopupCtrl"
>
<div
class=
"modal-dialog modal-wide"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h2>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h2>
</div>
<div
class=
"modal-body"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-8"
>
<div
ng-if=
"translationsRetrieved"
class=
"kis-listener-grid"
ng-grid=
"gridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.ADD | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewMessageDefinition()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.REMOVE | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeMessageDefinition()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-4"
ng-show=
"selectedMessages && selectedMessages.length > 0"
>
<div
class=
"form-group"
>
<label>
{{'PROPERTY.MESSAGEDEFINITIONS.ID' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
ng-model=
"selectedMessages[0].id"
>
</div>
<div
class=
"form-group"
>
<label>
{{'PROPERTY.MESSAGEDEFINITIONS.NAME' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
ng-model=
"selectedMessages[0].name"
>
</div>
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/message-definitions-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"ActivitiMessageDefinitionsCtrl"
>
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/message-property-write-template.html
0 → 100644
View file @
e2a64d42
<div
ng-controller=
"ActivitiMessageRefCtrl"
>
<select
ng-model=
"property.value"
ng-change=
"messageChanged()"
ng-options=
"messageDefinition.id as (messageDefinition.name + ' (' + messageDefinition.id + ')') for messageDefinition in messageDefinitions"
>
</select>
</div>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/multiinstance-property-write-template.html
0 → 100644
View file @
e2a64d42
<div
ng-controller=
"KisBpmMultiInstanceCtrl"
>
<select
ng-model=
"property.value"
ng-change=
"multiInstanceChanged()"
>
<option>
None
</option>
<option
value=
"Parallel"
>
并行(Parallel)
</option>
<option
value=
"Sequential"
>
顺序(Sequential)
</option>
</select>
</div>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/out-parameters-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
>
{{'PROPERTY.OUTPARAMETERS.VALUE' | translate:property.value.outParameters}}
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.OUTPARAMETERS.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/out-parameters-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"KisBpmOutParametersPopupCtrl"
>
<div
class=
"modal-dialog modal-wide"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h2>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h2>
</div>
<div
class=
"modal-body"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-6"
>
<div
ng-if=
"translationsRetrieved"
class=
"kis-listener-grid"
ng-grid=
"gridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.UP' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveParameterUp()"
><i
class=
"glyphicon glyphicon-arrow-up"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.DOWN' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveParameterDown()"
><i
class=
"glyphicon glyphicon-arrow-down"
></i></a>
</div>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.ADD' | translate:property}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewParameter()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{'ACTION.REMOVE' | translate:property}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeParameter()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-6"
>
<div
ng-show=
"selectedParameters.length > 0"
>
<div
class=
"form-group"
>
<label
for=
"sourceField"
>
{{'PROPERTY.PARAMETER.SOURCE' | translate}}
</label>
<input
type=
"text"
id=
"sourceField"
class=
"form-control"
ng-model=
"selectedParameters[0].source"
placeholder=
"{{'PROPERTY.PARAMETER.SOURCE.PLACEHOLDER' | translate}}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"expressionField"
>
{{'PROPERTY.PARAMETER.SOURCEEXPRESSION' | translate}}
</label>
<input
type=
"text"
id=
"expressionField"
class=
"form-control"
ng-model=
"selectedParameters[0].sourceExpression"
placeholder=
"{{'PROPERTY.PARAMETER.SOURCEEXPRESSION.PLACEHOLDER' | translate}}"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"expressionField"
>
{{'PROPERTY.PARAMETER.TARGET' | translate}}
</label>
<input
type=
"text"
id=
"expressionField"
class=
"form-control"
ng-model=
"selectedParameters[0].target"
placeholder=
"{{'PROPERTY.PARAMETER.TARGET.PLACEHOLDER' | translate}}"
/>
</div>
</div>
<div
ng-show=
"selectedParameters.length == 0"
class=
"muted no-property-selected"
translate
>
PROPERTY.PARAMETER.EMPTY
</div>
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/out-parameters-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"KisBpmOutParametersCtrl"
>
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/sequenceflow-order-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
translate
>
PROPERTY.SEQUENCEFLOW.ORDER.NOT.EMPTY
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.SEQUENCEFLOW.ORDER.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/sequenceflow-order-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"KisBpmSequenceFlowOrderPopupCtrl"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h3>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h3>
</div>
<div
class=
"modal-body"
>
<div
translate
>
PROPERTY.SEQUENCEFLOW.ORDER.DESCRIPTION
</div>
<br/>
<ol>
<li
class=
"sequence-flow-order-element"
ng-repeat=
"sequenceFlow in outgoingSequenceFlow"
>
{{'PROPERTY.SEQUENCEFLOW.ORDER.SEQUENCEFLOW.VALUE' | translate:sequenceFlow}}
<a
class=
"btn btn-icon btn-sm"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.UP' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveUp($index)"
ng-if=
"$index > 0"
>
<i
class=
"glyphicon glyphicon-arrow-up"
></i>
</a>
<a
class=
"btn btn-icon btn-sm"
rel=
"tooltip"
data-title=
"{{'ACTION.MOVE.DOWN' | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"moveDown($index)"
ng-if=
"$index < outgoingSequenceFlow.length - 1"
>
<i
class=
"glyphicon glyphicon-arrow-down"
></i>
</a>
</li>
</ol>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/sequenceflow-order-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"KisBpmSequenceFlowOrderCtrl"
>
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/signal-definitions-display-template.html
0 → 100644
View file @
e2a64d42
<span
ng-if=
"!property.noValue"
>
{{'PROPERTY.SIGNALDEFINITIONS.DISPLAY' | translate:property.value}}
</span>
<span
ng-if=
"property.noValue"
translate
>
PROPERTY.SIGNALDEFINITIONS.EMPTY
</span>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/signal-definitions-popup.html
0 → 100644
View file @
e2a64d42
<div
class=
"modal"
ng-controller=
"ActivitiSignalDefinitionsPopupCtrl"
>
<div
class=
"modal-dialog modal-wide"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
ng-click=
"close()"
>
×
</button>
<h2>
{{'PROPERTY.PROPERTY.EDIT.TITLE' | translate:property}}
</h2>
</div>
<div
class=
"modal-body"
>
<div
class=
"row row-no-gutter"
>
<div
class=
"col-xs-8"
>
<div
ng-if=
"translationsRetrieved"
class=
"kis-listener-grid"
ng-grid=
"gridOptions"
></div>
<div
class=
"pull-right"
>
<div
class=
"btn-group"
>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.ADD | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"addNewSignalDefinition()"
><i
class=
"glyphicon glyphicon-plus"
></i></a>
<a
class=
"btn btn-icon btn-lg"
rel=
"tooltip"
data-title=
"{{ACTION.REMOVE | translate}}"
data-placement=
"bottom"
data-original-title=
""
title=
""
ng-click=
"removeSignalDefinition()"
><i
class=
"glyphicon glyphicon-minus"
></i></a>
</div>
</div>
</div>
<div
class=
"col-xs-4"
ng-show=
"selectedSignals && selectedSignals.length > 0"
>
<div
class=
"form-group"
>
<label>
{{'PROPERTY.SIGNALDEFINITIONS.ID' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
ng-model=
"selectedSignals[0].id"
>
</div>
<div
class=
"form-group"
>
<label>
{{'PROPERTY.SIGNALDEFINITIONS.NAME' | translate}}
</label>
<input
type=
"text"
class=
"form-control"
ng-model=
"selectedSignals[0].name"
>
</div>
<div
class=
"form-group"
>
<label>
{{'PROPERTY.SIGNALDEFINITIONS.SCOPE' | translate}}
</label>
<select
class=
"form-control"
ng-model=
"selectedSignals[0].scope"
>
<option
value=
"global"
>
{{'PROPERTY.SIGNALDEFINITIONS.SCOPE-GLOBAL' | translate}}
</option>
<option
value=
"processInstance"
>
{{'PROPERTY.SIGNALDEFINITIONS.SCOPE-PROCESSINSTANCE' | translate}}
</option>
</select>
</div>
</div>
</div>
</div>
<div
class=
"modal-footer"
>
<button
ng-click=
"cancel()"
class=
"btn btn-primary"
translate
>
ACTION.CANCEL
</button>
<button
ng-click=
"save()"
class=
"btn btn-primary"
translate
>
ACTION.SAVE
</button>
</div>
</div>
</div>
</div>
\ No newline at end of file
JeeSpringCloud/jeespring-web/src/main/webapp/act/process-editor/editor-app/configuration/properties/signal-definitions-write-template.html
0 → 100644
View file @
e2a64d42
<!-- Just need to instantiate the controller, and it will take care of showing the modal dialog -->
<span
ng-controller=
"ActivitiSignalDefinitionsCtrl"
>
</span>
\ No newline at end of file
Prev
1
…
16
17
18
19
20
21
Next
Write
Preview
Supports
Markdown
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