Loading Datatables from a json after ajax post

Loading Datatables from a json after ajax post

MilyMily Posts: 15Questions: 3Answers: 0

Dear all,

Description of problem:
I am using an ajax post request in order to send some parameters in my asp.net controller who returns a json data to the view.

I have no errors in the console and when I load my data table in the html page I have the message "Processing" and nothing happens:
Error messages shown:

The good news is that I get my data because when I make console.log in "datasrc" I have the following result:

Here is my code:

 $("#tableServerSide").DataTable({
                    "processing": true,
                    "serverSide": true, 
                    "filter": true,
                    "ajax": { 
                        "url": "@Url.Action("AjaxPostCall", "ClientSelection")",
                        "type": "POST",
                        "data": filters,
                        "dataSrc": function (json) {
                            return JSON.parse(json.d).data;
                        },
                        "success": function (data) {
                            console.log(data);
                            console.log(data.data);
                        },
                        "failure": function (response) {
                            alert(response.responseText);
                        },
                        "error": function (req, textStatus, errorThrown) {
                            //this is going to happen when you send something different from a 200 OK HTTP
                            alert('Ooops, something happened: ' + textStatus + ' ' + errorThrown);
                        }
                    },
                    "columns": [ 
                        {
                            "data": null,
                            "className": "col-checkbox",
                            "render": function (data, type, row) {
                                var checkId = 'check' + row.id;
                                var isChecked = selectedIds.includes(checkId) ? ' checked="checked"' : '';
                                var checkbox = '<input id="' + checkId + '" type="checkbox" '
                                    + isChecked
                                    + ' class="server-checkbox" /> ';

                                return checkbox;
                            }
                        },
                        {
                            "data": "id",
                            "className": "col-id"
                        },
                        {
                            "data": "contractsTypes",
                            "className": "col-contractstypes",
                            "render": function (data, type, row) {
                                var chaine = string.Join(", ", row.value);
                                return chaine;
                            }
                        },
                        {
                            "data": "paymentChoice",
                            "className": "col-paymentchoice"
                        },
                        {
                            "data": "populationType",
                            "className": "col-populationtype"
                        }
                    ]
                });

        });

I have a problem with filling my columns.
Could you help me?
Thanks :)

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,236Questions: 1Answers: 2,597

    One thing to avoid is over-writing ajax.success in ajax - as the manual states "Must not be overridden as it is used internally in DataTables. "

    Other than that, are you able to link to your page, please so we can take a look? If not, can you post the full JSON returned, please.

    Colin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Hi Colin,

    I have tried this syntax:

    "ajax": { 
                            "url": "@Url.Action("AjaxPostCall", "ClientSelection")",
                            "type": "POST",
                            "datatype": "json",
                            "data": filters
                        },
    ....
    

    but it still doesn't work.

    Ok, I am sorry but I can't show you the content of my data. I can tell you that I am returning an object which contains :

    data
    draw
    error
    recordsFiltered
    recordsTotal

    and my data is an array(10). :)

  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906

    return JSON.parse(json.d).data;

    This doesn't seem right. JSON.parse() parses a JSON string. The string woundn't have a d property. Doing this is probably causing an error which is leaving the table state with Processing. You would use JSON.parse(json).data instead. But this would be the default that Datatables looks for so you wouldn't need the ajax.dataSrc option.

    Based on the JSON snippets you posted the JSON structure is the expected structure Datataables looks for so you wouldn't need the ajax.dataSrc option.

    Remove the ajax.dataSrc option. and the success function and let us know what happens.

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Hi kthorngen,

    I have the following code :

    $('#btn-filter-clients').click(function () {
                $("#client-selection").show();
    
                $.support.cors = true;
    
                var filters = {
                    ContractTypes: $("#contractFilter").val().join(', '),
                    PaymentChoices: $("#paymentFilter").val().join(', '),
                    PopulationTypes: $("#populationFilter").val().join(', '),
                    StrictFilteringContractTypes: $("#StrictFilteringContractTypes").is(":checked")
                }
    
                    $("#tableServerSide").DataTable({
                        "processing": true,
                        "serverSide": true,  
                        "filter": true,
                        "ajax": { 
                            "url": "@Url.Action("AjaxPostCall", "ClientSelection")",
                            "type": "POST",
                            "data": filters,
                            "datatype": "json"
                        },
                        "columns": [ 
                            {
                                "data": null,
                                "className": "col-checkbox",
                                "render": function (data, type, row) {
                                    var checkId = 'check' + row.id;
                                    var isChecked = selectedIds.includes(checkId) ? ' checked="checked"' : '';
                                    var checkbox = '<input id="' + checkId + '" type="checkbox" '
                                        + isChecked
                                        + ' class="server-checkbox" /> ';
    
                                    return checkbox;
                                }
                            },
                            {
                                "data": "id",
                                "className": "col-id"
                            },
                            {
                                "data": "contractsTypes",
                                "className": "col-contractstypes",
                                "render": function (data, type, row) {
                                    var chaine = string.Join(", ", row.value);
                                    return chaine;
                                }
                            },
                            {
                                "data": "paymentChoice",
                                "className": "col-paymentchoice"
                            },
                            {
                                "data": "populationType",
                                "className": "col-populationtype"
                            }
                        ]
                    });
    
            });
    

    But it's still not working.

  • MilyMily Posts: 15Questions: 3Answers: 0

    Hi kthorgen,

    I saw a new error with the code in above:

    Uncaught ReferenceError: string is not defined
        at render (ClientTreatmentServerSide:379)
        at jquery.dataTables.min.js:31
        at Object.b.fnGetData (jquery.dataTables.min.js:25)
        at F (jquery.dataTables.min.js:30)
        at Ka (jquery.dataTables.min.js:38)
        at R (jquery.dataTables.min.js:29)
        at zb (jquery.dataTables.min.js:53)
        at jquery.dataTables.min.js:50
        at k (jquery.dataTables.min.js:48)
        at Object.success (jquery.dataTables.min.js:49)
    
  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906

    But it's still not working.

    What happens?

    Do you get errors in the browser's console or alert messages?

    What is returned when you look at the browser's network inspector - not console.log?

    Can you post a link to your page so we can take a look to help debug?

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Kevin,

    I just posted the error at 2:43PM.
    My page is private. I can't share it...:(

  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906
    edited November 2020

    EDIT

    I just posted the error at 2:43PM.

    Sorry missed that.

    This is the line:

                      var chaine = string.Join(", ", row.value);
    

    What are you expecting string to be? Is it sone of the other columns? If so you the row parameter.

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Ok Kevin,

    Here is the error of the browser console:

    Here is the response in the browser's network inspector:

    Here is the preview:

    Tell me if you need of more details and thank you for your help.

  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906

    Sorry I missed your error you posted. See my edited response. What is string supposed to be?

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    No problem :) , I don't know on what the string corresponds? On a property of my data object or something else?

  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906
    Answer ✓

    What are you trying to display in that column?

    Is row.value an array? Maybe you want tis instead?

    var chaine = row.value.Join(", ");
    

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Ok, I have tried your solution : row.value.Join(",") , but I have another error :neutral:
    Uncaught TypeError: Cannot read property 'Join' of undefined
    So, I have suppr this line and I have the following message :
    [Violation] Forced reflow while executing JavaScript took 57ms
    and I have my data table 30sec later! Thanks for your help.
    Do I have to open a new discussion in order to understand why I have this message?

  • kthorngrenkthorngren Posts: 21,077Questions: 26Answers: 4,906

    Uncaught TypeError: Cannot read property 'Join' of undefined

    My guess is you don't have a value object returned in your row data. What do you want to show in this column?

    [Violation] Forced reflow while executing JavaScript took 57ms
    Do I have to open a new discussion in order to understand why I have this message?

    Sounds like you have some sort of recursive loop in your code. In order to help with this type of error access to your page is needed. But I dot't see any loops in the Datatables code you posted. The loop might be somewhere else. This SO thread has some info about this error and maybe the troubleshooting steps will help.

    Kevin

  • MilyMily Posts: 15Questions: 3Answers: 0

    Ok Kevin, I know what I have to change. Thanks a Lot for your help and have a nice day :)

This discussion has been closed.