jquery - DataTables + Bootstrap 3 enabling horizontal scrolling issue -


i'm having problem datatables integrated in bootstrap 3 , horizontal scrolling enabled

here fiddle

datatables initalization

/* data table initialization */     var equipmentdatatable = $('#equipmenttable').datatable({                                     "aocolumndefs": [{ "sclass": "text-center", "atargets": [ 0,25 ] },                                                      { 'bsortable': false, 'atargets': [ 25 ] }],                                     "sscrollx": '100%'                              }); 

i don't know why header not aligned body of table. in advance

i had similar issue, solved in different way.

i modified sdom parameter wrap table in div:

<i> sdom: 'r<"h"lf><"datatable-scroll"t><"f"ip>', applied following styles .datatable-scroll class:  /**  * makes table have horizontal scroll bar if wide container  */ .datatable-scroll {     overflow-x: auto;     overflow-y: visible; } </i> 

source


Comments

Popular posts from this blog

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -