primeng table append row code example
Example 1: jquery append table row
$('#someTableID tr:last').after('<tr><td>Some data here</td></tr>');
Example 2: jquery grab table row
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable