How do I hide the name field in list view (last column below)
Hi, you can set the hide_name_column
property to true
to achieve that.
ref: https://frappeframework.com/docs/v13/user/en/api/list#standard-list-js
2 Likes
Thank you. Managed to do it using custom script
can u share the script buddy ?
frappe.listview_settings[‘Opportunity’] = frappe.listview_settings[‘Opportunity’] || {};
frappe.listview_settings['Opportunity'] = {
hide_name_column: true,
}