Thanks, I found the delete javascript and easy apply it to my report. That's:
select 'dbr.javascript', "$(mydbr_selected_cell).parent().remove();";
Also I can make it work when Edit by update cell, using:
select 'dbr.javascript', "$(mydbr_selected_cell).parent().children().eq(0).text(1234321);";
but with Add function, I use a "Add" button with "dbr.report" to create new Line. But how can I add new row and update all value in this row from linked-report like I did when delete/edit? Cause "mydbr_selected_cell" is nothing.
And, how can I set the linked column, or Delete icon in the last column if my linked report like below:
select 'dbr.report', 'sp_DBR_inTaxCode_inCustCode', 'new_popup', '[Tax_Code]', 'inTaxCode*=[Tax_Code]', 'toDate=(inDate)', '"AR by TaxCode"';
select 'dbr.report', 'sp_DBR_update_Note', 'new_popup', '[Tax_Code]', 'inID=ID', 'inTaxCode*=Tax_Code', 'inDate<=(inDate)', 'inNote<=Note', 'inAction=""';
select 'dbr.report', 'sp_DBR_update_Note', 'new_popup', '[del]', 'inID=ID', 'inTaxCode*=Tax_Code', 'inDate<=(inDate)', 'inNote=Note', 'inAction="Delete"', 'event=click', 'callbefore=confirmdel', '"Delete Note"';