Change order of cards and Grouping

Is it possible to change the order of cards underneath a manager? Maybe sort by job title or sort by alphabet.

Hi @eenochs,
Yes, you can easily do that with a string or two of Custom JavaScript.
Please use the following code to change the field that is used for sorting:

renderer.config.nodesSortFieldName = "PreferredName";

Use your field instead of "PreferredName"
Also, use this code to set the sorting order:

renderer.config.nodesSortOrder = "DESC";

This will get the sorting order to be descending, it's ascending by default.
Please feel free to review the JavaScript framework here.