My deck from #SPSDC on June 6, 2014: World Domination with SPD 2013 web services workflow
In my previous post, I walked through using an SPD 2013 workflow with the Call HTTP Web Service action to create a subsite in SharePoint. In that post, we used Kirk Evans’ sample code, which looks like this: body: { ‘d’ :{ ‘parameters’: { ‘__metadata’: {‘type’: ‘SP.WebInfoCreationInformation’ }, ‘Url’: ‘RestSubWeb’, ‘Title’: ‘RestSubWeb’, ‘Description’: ‘rest-created web’, ‘Language’:1033, […]
SharePoint Designer 2013 has some new features that allow you to call a web service from a workflow. I recently used this new feature to create a self-service site creation workflow for a Project Management Office (PMO). (more…)
SharePoint 2013 has a powerful new feature known alternately as JSLink (when working in SharePoint)and Client-Side Rendering, or CSR (in the Microsoft literature). Either way, the point is the same… this code runs on the client side, meaning after the page loads. Client-Side Rendering is pretty straightforward, but takes a little understanding of how the […]