Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

datatable get all selected row data


var table = $('#example').DataTable(); 
$(document).on( 'click', '#FilterTable tbody tr', function () {
            $(this).toggleClass('selected');
            var ids = $.map(tableObject.rows('.selected').data(), function (item) {
                return item
            });
            console.log(ids) // here it will retur array of object 
        } );

// you can also do this by clicking another method
Source by datatables.net #
 
PREVIOUS NEXT
Tagged: #datatable #selected #row #data
ADD COMMENT
Topic
Name
9+7 =