Hi All,
I need to hide settings icon from chid doctype,user dont want to hide or remove the fields in table.
Can you Please help me out.
Hi All,
I need to hide settings icon from chid doctype,user dont want to hide or remove the fields in table.
frappe.ui.form.on("Doctype Name", {
// you can also use onload event here
refresh(frm) {
$('use[href="#icon-setting-gear"]').parent().hide()
},
});