- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2022 09:53 AM
Hi, I know how to change the order on the list at the left but how can I change the order on the Icons in the middle and right? I can't do it through the 'order' value in the categories table. Any ideas? I tried editing the widget but to no avail..
Thank you for your time and help.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2022 10:57 AM
Hello ,
You can achieve by making some changes in the widget named as "Categories".
var sc = new GlideRecord('sc_category');
sc.addQuery('sys_class_name', 'sc_category');
sc.addActiveQuery();
sc.orderBy('title'); // please edit this line with order in the widget & try it out
data.sc_catalog = $sp.getValue('sc_catalog');
............!
You will find the above code in the server side.
Mark Correct or Helpful if it helps.
Cheers..!
Happy Learning:)
Tushar
Cheers..!
Happy Learning:)
Tushar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2022 11:33 AM
Happy to hear , that it helped you.
Cheers..!
Happy Learning:)
Cheers..!
Happy Learning:)
Tushar