Skip to Main Content
Log in / Sign up
Log in
Please enter your email address
Home
IDEA-I-4864
Add a new idea
Subscribe
13
VOTE
Status
Planned
Show all details
Categories
SmartForms
Created by
Guest
Created on
Aug 5, 2021
RELATED IDEAS
Sort Order of Service Instance Methods
When creating SmartObject methods in the designer, Service Instances are not listed alphabetically which can make it difficult to find the instance you are wanting to refer to if you have a lot of services integrated.
Comments
1
Votes
13
Add a comment
Attach files
Enter a subject
Guest
Reply
|
Sep 8, 2022
Run this from dev tools console after you've opened the 'Select a ServiceObject method pop up'
$('ul#ServiceObjectMethodTreeBrowserTree ul li').sort(function(a,b){return ($(b).text() < $(a).text() ? 1: -1);}).appendTo('ul#ServiceObjectMethodTreeBrowserTree ul');
0
reply
Hide replies
$('ul#ServiceObjectMethodTreeBrowserTree ul li').sort(function(a,b){return ($(b).text() < $(a).text() ? 1: -1);}).appendTo('ul#ServiceObjectMethodTreeBrowserTree ul');