Giter Site home page Giter Site logo

Comments (2)

MikeVolodarsky avatar MikeVolodarsky commented on September 2, 2024

Solved, thanks to Allan of datatables for the tip of how to access the column header to inject the data attributes on pre-draw. In case this helps someone else, here is the approach we went with:

Summary: inject arbitrary attributes into the column headers, including the data-hidden='phone' attributes needed to drive the responsive plugin:

          var columns: [
                                { title: 'name', data: 'name' },
                                // NOTE: Include the data-hidden attribute in the column definition
                                { title: 'type', data: 'type', 'data-hide': 'phone' },
                            ]

            var tableConfig =
            {
                data: [],
                columns: columns,
                // Support for responsive datatables: https://github.com/Comanche/datatables-responsive
                autoWidth: true,
                preDrawCallback: function () {
                    // NOTE: This is where we have to inject the control attributes into each column header
                    // to cause the responsive plugin to correctly mark them for hiding/etc.  We do this by
                    // pushing all data-* attributes from the column definition as properties into the column
                    var api = $(el).dataTable().api();
                    for (var c = 0; c < columns.length; c++) {
                        var columnDef = columns[c];
                        var column = api.columns(c);
                        // split out all data-X attributes into the column header
                        for (var p in columnDef) {
                            if (columnDef.hasOwnProperty(p) && p.indexOf('data-') === 0) {
                                $(column.header()).attr(p, columnDef[p]);
                            }
                        }
                    }

                    // Initialize the responsive datatables helper once.
                    if (!self.responsiveHelper_datatable_tabletools) {
                        self.responsiveHelper_datatable_tabletools = new ResponsiveDatatablesHelper($(el), breakpointDefinition);
                    }
                },

After this, when the table renders, it will push the required attributes which will cause the responsive plugin to correctly set up those columns for collapse. Can be used with all the other data attributes as well.

Thanks,
Mike

from datatables-responsive.

comanche avatar comanche commented on September 2, 2024

Thanks for sharing.

from datatables-responsive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.