how to hide this button “Report”
for this specific one
Hi @anjalipv,
Reference:
Code:
frappe.listview_settings['Your DocType'] = {
refresh : function(listview) {
$('li[data-view="Report"]').hide();
}
};
I hope this helps.
Thank You!
5 Likes
it worked, Thank You…