brotherton-erpnext/erpnext/docs/user/customize-erpnext/custom-scripts/custom-script-examples/make-read-only-after-saving.md

13 lines
507 B
Markdown
Raw Normal View History

2015-11-05 11:25:10 +00:00
Use the method `cur_frm.set_df_property` to update the field's display.
In this script we also use the `__islocal` property of the doc to check if the
document has been saved atleast once or is never saved. If `__islocal` is `1`,
then the document has never been saved.
frappe.ui.form.on("MyDocType", "refresh", function(frm) {
// use the __islocal value of doc, to check if the doc is saved or not
frm.set_df_property("myfield", "read_only", frm.doc.__islocal ? 0 : 1);
}
{next}