Hello Guys
I want to remove the section “Add Comment”
Please help me
Thanks
Hi @jinsy,
Please apply it.
frappe.ui.form.on('Your_DocType_Name', {
refresh: function(frm) {
frm.page.wrapper.find(".comment-box").css({'display':'none'});
}
});
Thank You!
@NCP Hi, is there an option to disable comment in all pages? or use frappe.router.on("change"
, is this the Best Practice?
Hi @hyaray, Please check the reference: Any Idea to run JS script on any/specific doctype? - #2 by NCP
It works, thanks a lot!!