Remove edit form child table

Hi @jinsy,

Please apply it.

frappe.ui.form.on('Your DocType', {
    refresh:function(frm, cdt, cdn) {
        cur_frm.fields_dict['your_table_name'].grid.wrapper.find('.btn-open-row').hide();
    }
}); 

Then Reload and check it, Please.

Thank You!

5 Likes