Hello,
I want to change Name Column heading in list view can any one help me this.
Thank you
Uncheck “in list view” for that field.
Hi @Kaushal_Khute,
Please apply the Listview client script for that.
frappe.listview_settings['Employee'] = {
onload: function(listview) {
$(".list-row-col span:contains('Full Name')").each(function() {
$(this).text("Your Custom Column Name");
});
}
};
Output:
Please set your doctype and column name.
Reference:
I hope this helps.
Thank You!
4 Likes