Here is a jsfiddle straight from the api documentation: http://jsfiddle.net/jqwidgets/rkttb/
Change the button click to this:
$('#jqxbutton').click(function () {
$("#treeGrid").jqxTreeGrid('addRow', null, {
FirstName: "Name",
LastName: "Last Name"
}, 'first', "2")
});
Then click add row. It adds it where its supposed to but it also adds it to the end of the table (show 20 rows to see it better)