Skip to Main Content
Nintex Ideas

đź‘‹ Use this site to provide feedback and ideas for all Nintex Products. See our post on Nintex Community "Welcome to Nintex Ideas" for more details on Nintex Ideas, how an idea is handled by our product teams and more!


If you have questions about Nintex Ideas, please contact ideas@nintex.com

If you require support, please visit Nintex Customer Central

If you have a sales inquiry, please contact sales@nintex.com

Status Planned
Categories SmartForms
Created by Guest
Created on Aug 5, 2021

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.
  • Attach files
  • 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');