R – How to automatically print a form when a new item is posted to a list in SharePoint

sharepoint

How to automatically print a form when a new item is posted to a list in SharePoint?

I created a list in SP, with customized Entry and Edit forms and a workflow that connects them. Every time a new item is posted the Entry form needs to be used, but when I click submit I need the workflow not only to post the item to the list, but also generate a 'Print form' that can either saved or printed.

Best Answer

Considering the event, adding an item triggers an SPItemEventReceiver.ItemAdded. You would call your printing code from within this event, and deploy the functionality through a Feature.

Related Topic