How to add priority option to order of list for ex task?

Hello,

Am I missing something or priority is really a missing option on change order on task list for example?

What’s the easiest way to add that? Is there any chance to put this into the next v13 release?

thank you

it turned out that mandatory and bold fields are auto populated as sortable fields,

extracted code from frappe/public/js/frappe/ui/sort_selector.js

setup_from_doctype: function() {
// bold or mandatory
meta.fields.forEach(function(df) {
if(df.mandatory || df.bold) {
_options.push({fieldname: df.fieldname, label: df.label});
}
});

solution: goto customize , set bold for priority field.

2 Likes

Thank you @szufisher. It works. :slight_smile: I just dont know how to mark as solution.