- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2022 11:57 AM
For the Experience Category "Workspace", there is a related list called "UX Application Category M2Ms" that has a list of Workspaces to show in the drop-down.
I have many, many Workspaces on this menu and it would be much easier if they were in alphabetical order. How can I achieve this?
--------------------------------------------------
Workflow Cowboy
LinkedIn: https://www.linkedin.com/in/dalestubblefield/
YouTube: https://www.youtube.com/@starlordnow
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2022 09:16 AM
For fun, I tried and a query BR on sys_ux_registry_m2m_category seems to work:
(function executeRule(current, previous /*null when async*/) {
current.orderByDesc('page_registry');
})(current, previous);
The cache seems to be quite persistent, you need to run cache.do
After that check in an incognito window.
To see in the current browser you can run localStorage.clear();
in the browser console.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2022 03:10 PM
Hi Dale,
I dont think there is any OOB configuration for this
Maybe you can try by writing a script in business rule to sort this in sys_polaris_menu_config.list
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2022 09:16 AM
For fun, I tried and a query BR on sys_ux_registry_m2m_category seems to work:
(function executeRule(current, previous /*null when async*/) {
current.orderByDesc('page_registry');
})(current, previous);
The cache seems to be quite persistent, you need to run cache.do
After that check in an incognito window.
To see in the current browser you can run localStorage.clear();
in the browser console.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2022 02:09 PM
Thanks Arnoud, that worked great!
--------------------------------------------------
Workflow Cowboy
LinkedIn: https://www.linkedin.com/in/dalestubblefield/
YouTube: https://www.youtube.com/@starlordnow