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

Fix for table.ajax.reload() with data source "ssd" and ajax object in configuration #135

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Feb 13, 2019

  1. Workaround/Fix for table.ajax.reload() with data source "ssd" and aja…

    …x object in configuration:
    
    In Microsoft IE 11.0.40 and Apple Safari 12.0.3 I get additional
    DataTable initialisations with data source detected as 'dom' and settings Object containing ajax set to null.
    It nevertheless tries to build an ajax request and thus and breaks when
    ajax from settions object comes into use.
    
    var table = $("#table").DataTable({
    	serverSide: true,
    	ajax: {
    		url:"...",
    		method:"...",
    		data: function (){
    			// ...
    		}
    	}
    });
    
    $("#table").DataTable().ajax.reload();
    gregorschatz committed Feb 13, 2019
    Configuration menu
    Copy the full SHA
    c3811a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e9b582 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d503ca6 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2022

  1. Configuration menu
    Copy the full SHA
    971accf View commit details
    Browse the repository at this point in the history