datatables - Twitter Bootstrap Responsive - Show Table Column only on Desktop -


i'm using datatables.net + twitter bootstrap , responsive layout, i'm trying hide columns of table using class "visible-desktop" thats shows columns in big sizes seems not work, hides if resize windows desktop width columns hidden start showing stacked, seems css display class problem, because inherits type of display parent:

.visible-desktop {     display: inherit!important; } 

if manipulate

.visible-desktop {     display: table-cell!important; } 

works well... there workaround this? or have write own class table column hiding?

available classes .visible , .hidden.

use single or combination of available classes toggling content across viewport breakpoints.

bootstrap css html visible , hidden class grid

from bootstrap section here http://getbootstrap.com/css/#responsive-utilities-classes


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -