Minor versions for SharePoint custom list

I developed a custom SharePoint 2007 list with one custom content type derived from Item. The problem is that I only get major versions that enable version control in the list. Is it possible to get a small version in a user list? If not, does anyone know a good approach to how this might be done for a custom list.

+3
source share
1 answer

Minor versions are available only for lists based on SPDocumentLibrary, that is, for SPListItems there must be an associated SPFile. I think you're out of luck if you don't decide to implement the minor version as a custom column and save it using a custom ItemEventReceiver. Ugh.

+1
source

Source: https://habr.com/ru/post/1727551/


All Articles