Datatables in Appscript

Datatables in Appscript

KatinkoKatinko Posts: 4Questions: 0Answers: 0

Good Day!
Hi Colin.... I Just read this thread https://datatables.net/forums/discussion/69758/how-to-change-this-datatable-with-editor#latest now i was able to do that using alteditor since its form github it can be modified anytime while on productions to make it not working as it is. Here. https://script.google.com/macros/s/AKfycbwSVeyydKLP2H4D9bZmbxmSqJ0FBqNE448Sl5vreOOWpn2H2lnwYIhojP-AId8mcLJN/exec problem now is

  /*  onAddRow: function(dt, rowdata, success, error) {
            console.log("Missing AJAX configuration for INSERT");
            success(rowdata);
        },

        /**
         * Default callback for editing: mock webservice, always success.

        onEditRow: function(dt, rowdata, success, error) {
            console.log("Missing AJAX configuration for UPDATE");
            success(rowdata);
        },

        /**
         * Default callback for deletion: mock webservice, always success.

        onDeleteRow: function(dt, rowdata, success, error) {
            console.log("Missing AJAX configuration for DELETE");
            success(rowdata);
        },*/  not passing the data to the back end. Thank you! Guys

Replies

  • tangerinetangerine Posts: 3,342Questions: 35Answers: 394

    AltEditor is not supported by DataTables. Try that library's author.

Sign In or Register to comment.