web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Workflow Button on Adv...
Power Pages
Unanswered

Workflow Button on Advanced Form - Save first, then trigger workflow

(0) ShareShare
ReportReport
Posted on by 169

Hi all,

 

On an advanced form I have a button that triggers a workflow (OOB button, not custom).

The problem is that it does not save form data, it only triggers the workflow.

 

I tried to change its behaviour using the following code. Not working. At some time I managed to save the data, but still the workflow was not triggered. Is there any simpler way to accomplish this?

$(document).ready(function () {
 var contactid = "{{ user.contactid }}";

 var workflowButton = $(".workflow-link.btn.btn-primary.button.btn");
 workflowButton.bind("click", function () {

 var dataUrl = workflowButton.attr("data-url");
 if (!!dataUrl) {
 workflowButton.attr("data-url-prevent", dataUrl);
 workflowButton.removeAttr("data-url");
 
 WebForm_DoPostBackWithOptions

 (new WebForm_PostBackOptions($(this).prev().attr("name"), '', true, '', '', false, true));
 executeWorkflow();

 }
 })


function executeWorkflow() {
 debugger;
 var u = "/_services/execute-workflow/6d6b3012-e709-4c45-a00d-df4b3befc518"; // execute workflow request url
 var params = {};
 var workflow = {};
 workflow.LogicalName = "workflow";
 workflow.Id = "e85806bc-78ae-ec11-983e-000d3ab94e86";
 var data = {};
 data.LogicalName = "contact";
 data.Id = contactid; // guid of the contact record.
 params.workflow = workflow;
 params.entity = data;
 var jData = JSON.stringify(params);
 shell.ajaxSafePost({
 type: "POST",
 contentType: "application/json",
 url: u,
 data: jData
 }).done(function (r) {
 debugger;
 }).fail(function (n) {
 debugger;
 });
}

});

 

Categories:
I have the same question (0)

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Pages

#1
Fubar Profile Picture

Fubar 78 Super User 2025 Season 2

#2
Jerry-IN Profile Picture

Jerry-IN 75

#3
sannavajjala87 Profile Picture

sannavajjala87 31

Last 30 days Overall leaderboard