I am new to data tables and never created a responsive data tables. So i may be asking much help.
Here is link for JQuery data tables editables. I want to create it resp
You can do it with jquery only. fnAdjustColumnSizing function automatically adjust the with of the headers. When you resize the window we use this funtion.
$(window).resize(function(){ //Redraw datable $('#your-table').dataTable().fnAdjustColumnSizing();//Automatically sets header size });