ill try to show pop up message after saving how ?
this is my code.
frappe.msgprint(‘hello’)
ill try to show pop up message after saving how ?
this is my code.
frappe.msgprint(‘hello’)
Try after_save event
frappe.ui.form.on(“doctype”,{
after_save: function(){
frappe.msgprint(‘hello’);
}
});
check your code for syntax errors.