Hello! I’ve searched a lot and can’t find the answer. Where can I remove the column showing ID (name) of an item in custom doctype list. I changed in “frappe/frappe/public/js/frappe/list/listview.js” the string (line 51)
$.each([‘name’, ‘owner’, ‘docstatus’, ‘_user_tags’, ‘_comments’, ‘modified’,
‘modified_by’, ‘_assign’, ‘_starred_by’],
function(i, fieldname) { add_field(fieldname); })
Removed ‘name’
$.each([‘owner’, ‘docstatus’, ‘_user_tags’, ‘_comments’, ‘modified’,
‘modified_by’, ‘_assign’, ‘_starred_by’],
function(i, fieldname) { add_field(fieldname); })
but the ID (name) is still in the list view
Is this file the right place to edit?
Thank you in advance!