Change Name Column heading in list view

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