php Jquery - 服务器端 - 添加编辑按钮

I have a datatable that loads about 20,000 (minimum) numbers (rows of data) . With that said , i use the pipeline feature of jquery datatables since it easily handles a large chunk of data .

The issue is that i want to know how to add a new row dynamically by passing the id to it .

Below is my jquery code :

$(document).ready(function() {
    available_numbers();    
    function available_numbers(){
        $('#available_numbers').dataTable( {
        "processing": true,
        "serverSide": true,
        "ajax": $.fn.dataTable.pipeline( {
            url: 'fetch_available_numbers.php',
            pages: 5 
        })
    } );
    }
} );

And below is the table :

<table id="available_numbers" class="display" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Phone Number</th>
            <th>Assigned To (User Group)</th>
        </tr>
    <tfoot>
        <tr>
            <th>Phone Number</th>
            <th>Assigned To (User Group)</th>
        </tr>
    </tfoot>
</table>

The values are fetched in json format , just like the server side script in datatables .

Thanks.