• Resolved Joe

    (@sabbathbreaker)


    Hi Tobias,

    Thanks for the nice plugin, I am using the ColVis extension for TablePress, I would like to hide a few columns on mobile screen when initiated because the table width is overlap the sidebar but allow visitors to click and show the columns if they wanted to see more information. How to do that? Thanks in advance

    https://www.ads-software.com/plugins/tablepress/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    I’m afraid that that’s not directly possible. ?? The DataTables Colvis library does not support a feature like that, from what I know.

    Regards,
    Tobias

    Thread Starter Joe

    (@sabbathbreaker)

    Hi Tobias,

    Thanks for your replied, is there anyway I can call this command from the custom css @media (max-width: 979px) {}

    "aoColumnDefs": [ { "bVisible": false, "aTargets": [ 2,3 ] } ]

    Is it possible to be done with css without using ColVis? I just want to hide few columns in the mobile and user can click something to show the columns again.

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no, those commands can not be combined, I’m afraid. The @media query is CSS, while the other command is JavaScript code.

    The only solution that I can think of here is that you basically add your own buttons that show/hide columns.

    Regards,
    Tobias

    Thread Starter Joe

    (@sabbathbreaker)

    Hi Tobias,

    Sorry for trouble you, lets say my custom css code as below:

    @media (max-width: 979px) {
    
    	.tablepress-id-1 .column-2,
    	.tablepress-id-1 .column-3 {
    		display: none;
    	}
    
    }

    Can I have a Javascript button code to show the hidden column back, I am not good in programming, thanks

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    yes, that should work. You could e.g. use jQuery to create JS that listens for a button click and then adds/removes a special CSS class from a column (and you use that CSS class in your CSS code). Unfortunately, I don’t have the time to develop this for you, at the moment. Sorry.

    Regards,
    Tobias

    Thread Starter Joe

    (@sabbathbreaker)

    Hi Tobias,

    I will try, if worked i will post the code here, thanks

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    that would be great! Maybe it’s useful for others as well!

    Regards,
    Tobias

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘ColVis extension hide columns on mobile’ is closed to new replies.