alexandre025/cdx

View on GitHub
app/assets/javascripts/cdx/admin/controllers/pages.js

Summary

Maintainability
A
0 mins
Test Coverage
Cdx.ready(function () {

    if ($('#pages_index').is('*')) {

        $table = $('#pages-table');

        $table.dataTable({
            "processing": false,
            "serverSide": true,
            "ajax": $table.data('source'),
            "pagingType": "full_numbers",
            "columns": [
                {"data": "title"},
                {"data": "slug", "orderable": false},
                {"data": "state", "orderable": false},
                {"data": "published_on"},
                {"data": "actions", "orderable": false}
            ]
        });

    }

});