I have a jQuery datatable with one of the columns having an edit button.
On clicking the edit button I need to take all the values from the selected row to Spring controller .
I am able to get the row data from the datatable but I am not sure how to send this value to the spring controller.
Code for retrieving row data :
$('#example tbody').on( 'click', 'tr', function () {
var data = table.row( this ).data();
} );