Change the "Add Row" Button name in the child table

Hi, is there a way to change the child table button name “Add Row”

I need to change it from “Add Row” to “Add Item”

@Rabie_Moses_Santilla You can do this in Client Script

frappe.ui.form.on(‘Quotation’, {
refresh(frm) {
frm.fields_dict[“items”].grid.grid_buttons.find(‘.grid-add-row’)[0].innerHTML=“Add Item”
}
})

1 Like

Thanks. Appreciate it