I am using a callback function after an inline dbr.editable report. The call back function works great, however I want the report to dissapear from the report afterwards. This is what I am using:
select 'dbr.javascript', 'function mycallback()
{
var jobnum = col_value_get( this, 1 );
var jqxhr = $.ajax( "forms/jobcosting_notify.php?jobnum=" + jobnum + "¬ifythis=completedinshop" );
//alert("changed completed in shop for job number "+jobnum);
$(mydbr_selected_cell).parent().remove();
}';
Why isn't this working?