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

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -