Set values into child table

If you need to update a field in Child table simple AJAX call
frappe.call({
“method”: “frappe.client.set_value”,
“args”: {
“doctype”: child_table_name,
“name”: name_of_row,
“fieldname”: {
“field_name1”:“value1”,
“field_name2”:"value2
}
}
})

1 Like