Home > Software design >  Bootstrap datatable not responsive in tabler dashboard for mobile view?
Bootstrap datatable not responsive in tabler dashboard for mobile view?

Time:01-18

Used bootstrap datable to render data from the database in tabler admin dashboard. it works absolutely fine in desktop view but not in mobile view.

How to fix the issue?

Desktop view

enter image description here

Mobile View

CodePudding user response:

find the datatable css in your bootstrap files

somtimes in main css press ctrl F Then write datatables

when it cames make overflow:hidden TO overflow-x:auto;

CodePudding user response:

Wrap your datatable inside .table-responsive class

...
  • Related