i using jquery datatable in web application. want add custom button row generating datatable. button should display in marked in red
can suggest solution this?
use datatable's property follows
$(document).ready(function() { $('#example').datatable( { dom: 'bfrtip', buttons: [ { text: 'my button', action: function ( e, dt, node, config ) { alert( 'button activated' ); } } ] } ); } );
Comments
Post a Comment