Hi @Sanya,
That for, please apply the listview client script.
frappe.listview_settings['Your DocType'] = {
onload: function(listview) {
$(".list-row-col span:contains('ID')").each(function() {
$(this).text("YOUR-TEXT");
});
}
};
Output:
Please set your doctype according to.
Thank You!
