Search
18452 results 8931-8940
Forum
- 19th Mar 2015editable datatableto the server via AJAX, and then update the
- 18th Mar 2015what is the corresponding of .fnGetPosition in Datatable ?data(); var ifaceData = data[10].replace(/</g,"<").replace(/>/g,">").replace(/"/g,'"'); $.ajax({ url: "deleteMetadata.do", type: 'POST',
- 17th Mar 2015A bit of contrived method for getting hidden column value for a selected rowUgh, sorry did not notice the syntax for posting code. $('#tblMyTable tbody').on('click', 'tr', function () { var tr = $(this).closest('tr'); var row = table.row(tr); var Id = table.row(row[0][0]).data().Id; //call some ajax });
- 17th Mar 2015DataTables 1.10.4 server side processing stuck on 'Processing' error messagesuccess' callback of the "ajax" part of creating a
- 17th Mar 2015Pipeline with Editor Select Optionsupdated after the Pipeline ajax request with: $.each(json.options, function
- 16th Mar 2015row disappears after editor update(and the json returned in the Ajax response is null) As in { row: null }? If so, it means that your edited row no longer meets whatever filtering criterion you have applied to the script - probably using the where() method. Allan
- 16th Mar 2015Download Excel Without TableTools in Server sideIs any way to send the ajax request to custom function Sure - use the fnClick option. Allan
- 16th Mar 2015Can't get a select to work in Editor from server sideis nothing in the Ajax response, you'll probably need
- 15th Mar 2015changing row colour after editor create/editI have a solution which works. On closing the editor window, just do an ajax reload editor.on( 'close', function () { table.ajax.reload( null, false ); } )
- 13th Mar 2015Table Joins: Does Editor have support for "Or" statements and "Sum Of"?$q->or_where( myrequests.assigned_group', 4 ); Missing quote mark - sorry. Should be: $q->or_where( 'myrequests.assigned_group', 4 ); Did the error in the Ajax return give an error message that agrees with that? Allan