I have to following code to show my user table, this is achieved by JTable.
This should get you on your way:
$('#userTableContainer').jtable({ .... recordsLoaded: function(event, data) { $('.jtable-data-row').click(function() { var row_id = $(this).attr('data-record-key'); alert('clicked row with id '+row_id); }); } });