10-16-2019 05:23 AM
Hi everyone,
I want to when I click on the "Reject" button to get a message asking the user to confirm that I want Reject?
Please guide me.
Thank !
10-16-2019 02:59 PM
Is this something you are doing with Activiti?
10-16-2019 10:14 PM
Hi jljwoznica,
Thank you for your interest in the problem I'm having.
>>Is this something you are doing with Activity?
Yes, When I review documents, I want a message to be displayed to confirm "Reject". After I click button "Reject"
11-12-2019 11:27 PM
Hi,
I define own outcome-contraint for in workflow-model same as (File: test-model.xml):
<constraints> <constraint name="my:myOutcomeOptions" type="LIST"> <parameter name="allowedValues"> <list> <value>Approve</value> <value>Reject</value> </list> </parameter> </constraint> </constraints>
And custom sequence-flows to workflow definition (File: test.bpmn20.xml):
<exclusiveGateway id="exclusiveGateway1"</exclusiveGateway> <sequenceFlow id="flow3" name="Rejected" sourceRef="exclusiveGateway1" targetRef="Rejected"> <conditionExpression xsi:type="tFormalExpression"> <![CDATA[${test_a1approvecount < test_a2approvecount}]]> </conditionExpression> </sequenceFlow>
I want to when I click button "Reject" showing popup confirm and after click button in popup confirm (OK and Cancel) display change to dashboard. Please help me!
Thank you advance!
11-13-2019 02:26 AM
Ok, let's start from the beginning. What you describe in workflow model in
<constraint name="my:myOutcomeOptions" type="LIST">
are so called "transitions". Usually they are rendered by template and JavaScript
"/org/alfresco/components/form/controls/workflow/activiti-transitions.ftl"
"/components/form/workflow/activiti-transitions.js"
The teplate which is used for transition elements rendering is controlled by share-config-custom.xml in a following way:
<form>
<appearance>
<field id="my:myOutcomeOptions" label-id="workflow.field.outcome" set="response">
<control template="/org/alfresco/components/form/controls/workflow/activiti-transitions.ftl" />
</field>
</appearance>
</form>
I suppose the place to create your custom pop-up is in here "/components/form/workflow/activiti-transitions.js"
There is a function called "onClick". If I would need to implement similar pop-up I'd do it in this function using
Alfresco.util.PopupManager
Hope this helps!
11-13-2019 02:50 AM
Thanks so much!
After reading your answer helped me understand many issues.
I will practice following your instructions, if I get stuck I'll contact you later.
Once completed I will rewrite the entire process up here to help everyone.
What a wonderful person you are.
11-18-2019 10:24 PM
Hi Vic,
I have found the file "activiti-transitions.js" in below:
MyDesktop\alfresco\workflow-tutorial\target\tomcat\webapps\workflow-tutorial-share\components\form\workflow
I custom function "onClick" :
Add new Popup Manager
fn: function org_alfresco_training_onActionCallWebScriptSuccess(response) { Alfresco.util.PopupManager.displayPrompt( { title: this.msg(""), text: JSON.stringify(response.json), buttons: [ { text: this.msg("button.ok"), handler: function org_alfresco_training_onActionCallWebScriptSuccess_success_ok() { this.destroy(); }, isDefault: true }, { text: this.msg("button.cancel"), handler: function org_alfresco_training_onActionCallWebScriptSuccess_cancel() { this.destroy(); } }] }); }
But when I add it doesn't see the change on Alfresco . I re-run Alfresco when I saw the "activiti-transitions.js" file was created.
Did I do something wrong?
Please guilde me!
Explore our Alfresco products with the links below. Use labels to filter content by product module.