Hi,
i have custom doctype below is listview of
how to remove column in red square
did you un-check ‘in list view’ property of this field?
Alternatively, you could increase the width size of other in list view columns (total allowed is 11, so if your name column width expands, this won’t appear in view.
Hello @shahid_ecit,
ERPNext provide property of field “width”.You can set width by editing doc type. See below snapshot.
Thanks.
Hey @shahid_ecit, you need to put the size of the column in the ‘Column’ Section. As I said the sum of all column values is maximum 11, it will restrict anything beyond 11 in the view.
See here I change to make it visible or hide it -This is obtained by clicking at any field name and scrolling to the bottom of that window.
is there any programmatic approach to this.
I’m not sure why it should show it this way. Maybe someone more experienced in frappe framework would be able to help.
did you go thru this DocType and putting your DocType name to make changes?
'
We did this through CSS, try adding a custom CSS file and use this approach to override it:
div.list-item__content.list-item__content–id > a.text-muted {
color:transparent!important;
}
Team, Me also same issue . Do you have any solution.
I’m using v13.3 and still see this problem.
I don’t see this problem on the documentation screenshots.
Not sure when this bug started.
You can add this in your _list.js :
frappe.listview_settings[‘’] = {
hide_name_column: true }
where do you add this?