This will be a quick post to follow up on couple of my previous posts:
1) Managing SharePoint 2013 Workflows with CSOM
2) Using the SharePoint 2013 Workflow Interop Service in CSOM
In this post, I will show you basically the same thing as in the previous posts, but by using the JavaScript Client Object Model (JSOM).
I recently had a requirement for which I had to start a Nintex Site Workflow with JavaScript. Now due to my previous posts, I had an idea that we can use the Managed CSOM to manage workflows but wanted to see if the same is possible from the JavaScript CSOM. Nintex Workflows utilize the SharePoint 2010 Workflow Engine and hence we require the Interop Service to work with them in JavaScript.
Here is the code I put together to start my Site Workflow:
You can have a look at my previous posts and the SP.WorkflowServices.debug.js file to see how to start other workflows such as List Workflows or SharePoint 2013 Workflow Engine workflows from the JavaScript Client Object Model.
1) Managing SharePoint 2013 Workflows with CSOM
2) Using the SharePoint 2013 Workflow Interop Service in CSOM
In this post, I will show you basically the same thing as in the previous posts, but by using the JavaScript Client Object Model (JSOM).
I recently had a requirement for which I had to start a Nintex Site Workflow with JavaScript. Now due to my previous posts, I had an idea that we can use the Managed CSOM to manage workflows but wanted to see if the same is possible from the JavaScript CSOM. Nintex Workflows utilize the SharePoint 2010 Workflow Engine and hence we require the Interop Service to work with them in JavaScript.
Here is the code I put together to start my Site Workflow:
You can have a look at my previous posts and the SP.WorkflowServices.debug.js file to see how to start other workflows such as List Workflows or SharePoint 2013 Workflow Engine workflows from the JavaScript Client Object Model.