Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace error with DataTables #248

Open
Braunson opened this issue Feb 19, 2015 · 0 comments
Open

Replace error with DataTables #248

Braunson opened this issue Feb 19, 2015 · 0 comments

Comments

@Braunson
Copy link

Seems this works no problem:

    var table = $('#job-table-section').find('.dataTable');
    var dt = table.DataTable({
        'ajax':'/api/jobs/datatable'
    });

But once when I add parameters to the DataTables ajax call like so, I get the replace error below

    var table = $('#job-table-section').find('.dataTable');
    var dt = table.DataTable({
        'ajax': {
            'data':'/api/jobs/datatable',
            beforeSend: function(jqXHR, settings) {},
            complete: function(response, textStatus, jqXHR) {}
        }            
    });

The error with the above code:

Uncaught TypeError: Cannot read property 'replace' of undefined on lines 2253

Seems to be this function, but no info on where it's being used to cause the error:

    String.prototype.toProperCase = function() {
        return this.replace(/\w\S*/g, function(txt) {
            return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
        });
    };

Specifically:

        return this.replace(/\w\S*/g, function(txt) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant