Hi, i'm new to this forum and i want to begin to use datatables, I've a simple question: How i can add a custom column that contain a form and button who can redirect with a post action to an another page?
I'm using the last version of datatables and the data is retrived by an ajax request to mysql database.
Here is the script code:
$(document).ready(function() { $('#example').dataTable( { "processing": true, "serverSide": true, "ajax": { "url": "server_processing.php", }, } ); } );
Thanks in advance.