Concern Regarding List View Frappe

Hi Team,
In Frappe , For the list list view of a doctype ID field has a fixed position. Where as we want the ID to be the first field in the list view dashboard.
I am attaching the reference image for Item doctype. Can we customize the order in the list view according to our requirements.

Regards,
Prasanth

Yes you can. @Prasanth_Kumar_J,

If you want to make sure the ID comes first, just use “item_code” as the title. Take a look at the picture for guidance.

Output:

If you want to remove the id then apply the listview client script.

frappe.listview_settings['Item'] = {
    // Hide name from Listview
	 hide_name_column: true
};

Output:

I hope this helps.

Thank You!

1 Like

@NCP thanks for the reply will check