Hide docstatus in Listview

Hi,
how can I hide the docstatus field, to show only a custom “status” field I created in the ListView of a DocType?

You can Use workflow status

use Customize Form to hide the docstatus field in ListView

Go to Setup > Customize > Customize Form

Select doctype then in fields check/uncheck the In List View option

Am unable to find Docstatus as one of the fields in Customize Form. How do I go about removing the docstatus from List view?

Hello @asneha1
Can you please tell me which document you need to remove the docstatus from it?
By the way: this can be removed from filename_list.js.

Regards
Bilal

Go to Setup > Customize > Customize Form

No ‘status’ field in list.

In list setting ‘ID’ and ‘status’ are no trash icon.

1672546129517

Please try to remove these fields through below code. Use status field class name in below code and then try to refresh the page.

frappe.listview_settings['Lead'] = {
	refresh: function(listview) {
	    $(".comment-count").hide();
	    $(".frappe-timestamp").hide();
	    $(".avatar-small").hide();
	}
};