alexandre025/cdx

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

Summary

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

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

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

        $table.dataTable({
            "processing": false,
            "serverSide": true,
            "ajax": $table.data('source'),
            "pagingType": "full_numbers",
            "columns": [
                {"data": "email"},
                {"data": "first_name"},
                {"data": "last_name"},
                {"data": "actions", "orderable": false}
            ]
        });

    }
});