CA Service Management

 View Only
  • 1.  Reorder Dropdown

    Posted Mar 18, 2016 03:57 PM

    I have added a dropdown to the detail_cr and it defaults to alphabetical order. Is there a way to order the dropdown by the "id" column for this table?



  • 2.  Re: Reorder Dropdown

    Posted Mar 18, 2016 06:50 PM

    On the few custom tables that I've created they defaulted to displaying ID in numerical order.  I added a .mod file to my system with the syntax to force it to order by the sym attribute.  You could use a similar approach, but I'm wondering why it's different for you.

     

    Add this to a .mod file and place in nx_root/site/mods.  You'll need to update the object and factory to match your environment.

    OBJECT object{
      FACTORY factory{
        STANDARD_LISTS {
       SORT_BY "id";
       WHERE "delete_flag = 0" ;
        };
      };
    };
    

     

    Edited, didn't save correctly.



  • 3.  Re: Reorder Dropdown

    Posted Mar 21, 2016 08:51 AM

    Should this be added directly to the detail_cr.htmpl or should it be it's own file in the root of mods? If it is it's own file, how does the detail_cr.htmpl know to reference that file?