How can i clear Cache with out reloading or refreshing the doc in After_Save Event .
Is this Possible ???.
Below is my code but its reload the doc.
// after_save: function(frm) {
// frappe.ui.toolbar.clear_cache();
// // localStorage.clear();
// }
If you do frappe.ui.toolbar.clear_cache()
the page will be reloaded, if you want to refresh the doctype without reloading then use this
frm.reload_doc()