NCP
2
Hi @Nivedha,
If you want to hide Save As Option from the Particular Doctype then you can use the listview client script.
frappe.listview_settings['Item'] = {
refresh: function(listview) {
listview.page.menu.find('[data-label="Save%20As"]').parent().parent().remove();
}
};
Output:
Reference:
Thank You!
1 Like