dataSrc for Editor?

dataSrc for Editor?

TieKeiTieKei Posts: 13Questions: 3Answers: 0
edited May 2015 in Editor

Hi,
I'm using ajax.dataSrc in DataTables to manipulate my data to restructure a complex json to fit the needs of selectize. This works.

But since I'm using an inline Editor I need the same function for DataTables Editor, after it POSTs the users changes to my server.

Any hints on that?

Thanks,
Tim

This question has accepted answers - jump to:

Answers

  • tangerinetangerine Posts: 3,350Questions: 37Answers: 394
  • TieKeiTieKei Posts: 13Questions: 3Answers: 0

    thanks for the link, maybe I'm failing to see something obvious, but how is this supposed to work?

    The documentation Example shows how to define the custom ajax function, but how do I actually use it?

    I mean, somewhere I have to call this function and fill in the parameters, right? Where and how?

    This is my code (example with added dataFilter)

    editor = new $.fn.dataTable.Editor({
                table: "#table",
                ajax: function ( method, url, data, success, error ) {
                    $.ajax( {
                        type: method,
                        data: data,
                        dataType: "json",
                        url: url,
                        success: function (json) {
                            success( json );
                        },
                        error: function (xhr, error, thrown) {
                            error( xhr, error, thrown );
                        },
                        dataFilter: function (jsonString, type) {
                            if (type == "json") {
                                var json = JSON.parse(jsonString);
                                return doSomething(json);
                            }
                            return jsonString;
                        }
                    });
                },
    
  • tangerinetangerine Posts: 3,350Questions: 37Answers: 394

    Sorry Tim, I'm not sure enough on the detailed implementation. No doubt Allan will step in on Monday.

  • allanallan Posts: 61,853Questions: 1Answers: 10,134 Site admin
    Answer ✓

    The ajax.dataStc option is primarily designed to be able to tell DataTables where in a JSON object the data for the table is located. Editor doesn't need such an option since it reads the data from the rows in the DataTable.

    What I'm to quite clear on here is what you want to achieve with respect to the interface between Editor and Selectize. Do you have data in each Ajax return that Editor receives that you want to be able to modify and then use in Selectize? If so, the postSubmit event provides the option to be able to modify the JSON object returned from the server before Editor does any processing on it.

    Allan

  • TieKeiTieKei Posts: 13Questions: 3Answers: 0

    Hi Allan,

    I'm using ajax.dataSrc to reduce complexity of my data source (the articles part):

    {
        "data": [
            {
                "DT_RowId": "row_1",
                "articles": [
                    {
                        "articleid": 22,
                        "articletype": "f",
                        "description": "article one (type f)"
                    },
                    {
                        "articleid": 23,
                        "articletype": "p",
                        "description": "article two (type p)"
                    },
    

    my function called by ajax.dataSrc transforms this into:

    {
        "data": [
            {
                "DT_RowId": "row_1",
                "p": [ "23", ... ],
                "f": [ "22", ... ],
                "articles": [ 
                    {
                        "articleid": 22,
                        "articletype": "f",
                        "description": "article one (type f)"
                    },
                    {
                        "articleid": 23,
                        "articletype": "p",
                        "description": "article two (type p)"
                    },
    

    which is then used by selectize to work correctly.

    If there is a manual way to feed data into selectize please tell me, this may work with an event then.

  • allanallan Posts: 61,853Questions: 1Answers: 10,134 Site admin
    Answer ✓

    If there is a manual way to feed data into selectize please tell me

    You can use the update() method of the selectize field type.

    Allan

  • TieKeiTieKei Posts: 13Questions: 3Answers: 0

    Thanks allan!
    For reference, my solution looks like this:

    $("#licence-table").DataTable({
                "ajax": {
                    "url": "...",
                    "dataSrc": function ( json ) {
                        for ( var i=0, ien=json.data.length ; i<ien ; i++ ) {
                            json.data[i] = restructureJSON(json.data[i]); // this function does some transformation of my data before it is processed by DataTable
                        }
                        return json.data;
                    }
                },
    
    licenceEditor = new $.fn.dataTable.Editor({
        ...
    });
    
    // transform data returned by server, after editing a row, before it is processed by DtEditor
    licenceEditor.on('postSubmit', function( e, json, data, action ){
                if(action == "edit") {
                    json.row = restructureJSON(json.row); // same function as above in DataTables
                }
    });
    

    this allows me to simplify my datastructure at the client. Not included: transforming it back to the original datastructure (b.c. I was able to modify the backend :P )

This discussion has been closed.