I would like to know if there is any way to remove or hide the “status” and “id” filing from the view list.
Hii @Talita.Mangolin
To display your required fields in a list view, you can set the fields you want:
I hope it works for you,
thank you
1 Like
You can’t remove the ID from the Listview Settings,
If you want to remove the ID then you have to apply the Listview client script.
frappe.listview_settings["DocType"] = {
hide_name_column: true
};
2 Likes
Thank you so much, you’re the best. It worked perfectly
One more question, to hide the listview comment icon, I’m using the following code:
$(“.comment-count”).hide();
But it didn’t work in v14.
complete code:
frappe.listview_settings[‘Opportunity’] = {
refresh: function(listview) {
$(“div[data-fieldname = name]”).hide();
$(“.comment-count”).hide();
$(“use.like-icon”).hide();
},
hide_name_column: true
};
Any one can help me hide the status field in list view.