Thank you! This works now but I do have to type something into the field and click away for it to refresh.
Would this work the same on a child table within a form? I want to do calculations on Quotation Item and I’ve used the code you suggested above but it’s not calculating.
frappe.ui.form.on(“Quotation Item”, “full_price”, function(frm) {
frm.set_value(“full_price”, frm.doc.qty * frm.doc.price_list_rate);
});