Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Sorting datefolders and items does not work in v. 2.1.1. The sort order is set, but the items are never saved:
static void DoOrder(IEnumerable<IContent> contents) { var sortOrder = 0; foreach (var objChild in contents) { objChild.SortOrder = sortOrder; sortOrder++; } }
I solved it by just doing this instead:
static void DoOrder(IEnumerable<IContent> contents) { ApplicationContext.Current.Services.ContentService.Sort(contents); }
Thanks for this I have implemented this in version 2.1.2
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Sorting not working
Sorting datefolders and items does not work in v. 2.1.1. The sort order is set, but the items are never saved:
I solved it by just doing this instead:
Thanks for this I have implemented this in version 2.1.2
is working on a reply...