Jquery Datatable,Custom button,same row, next to select -


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