I need to have some action performed when "Save All" button is pressed. If I subscribe to DocumentSaved
event that event is invoked once for each unsaved document and this is kind of a problem because I'd rather have the action invoked for the documents collection instead of for each document separately.
Is it possible to handle "Save All" as a single action instead of handling multiple DocumentSaved
events?