This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi,
I would like to ask how will I know how to change ordering of Service Catalog display in Web Portal using HTML 5.
Thank you
Hello,
This needs some coding, please go through the similar thread below:
https://social.technet.microsoft.com/Forums/en-US/bc8623fd-fdf9-4361-a5df-5e211054597b/new-html-5-service-manager-portal-is-not-sorting-the-catalog-items?forum=portals
Please remember to mark the replies as answers if they help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
This code resolve the issue:
requestOfferings = requestOfferings.OrderBy(x => x["Title"]).ThenByDescending(x => x["Title"]).ToList()