Are there events which fire when you use the sort functionality of the content document tree?
I had assumed that there may be events similar to:
umbraco.cms.businesslogic.web.Document.BeforeMove
Is there an object other than Document that I am overlooking for an event hook for content sorting?
The class I’m using to handle custom events uses umbraco.businesslogic.ApplicationStartupHandler as its base class.
This is a cheatsheet of all the API events, sorted by type of object they apply to. There is no event for a sort, unfortunately.
However (and I’m thinking out loud here) after the sort you will either have an UpdateDocumentCache event at some point, or a RefreshContent event. Would it not be possible to hook into those instead?