Viewing 6 replies - 1 through 6 (of 6 total)
  • I’m hoping for this feature too.

    I think all of us are

    Thread Starter Mkom

    (@mkom)

    The development is ceased. I already found an alternative.

    Plugin Author takien

    (@takien)

    Hello, this feature is in development.
    Thank you.

    Hi takien,

    When will this feature be released?

    Thanks
    Colin

    I’m using some custom CSS to get some responsive behavior:

    .easy-table table, .easy-table thead, .easy-table tbody, .easy-table th, .easy-table tr, .easy-table td {
            display: block;
        }
    
        .easy-table thead {
            display: none !important;
        }
    
        table.easy-table td {
            border: none !important;
        }
    
        table.easy-table tr:nth-of-type(odd) {
            background: rgba(255,255,255,.5);
        }
    
        .easy-table td {
            display: table-caption;
            caption-side: bottom;
            width: 300%;
        }
    
        .easy-table td:first:before {
            /*content: "can place dummy content here"; */
            float: left;
            text-align: left;
            width: 50%;
            display: inline-block;
        }

    One big limit with this is that the headers will still be present one time (or none at all in the example above). If someone know how to relocate the headers to repeat before each cell it would be a whole lot better.

    There are certainly better ways of doing this (this is a 4 column layout), but it works for me.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Responsive’ is closed to new replies.