Search
18504 results 2751-2760
Forum
- 30th Sep 2016Server Side Limit of -1 throws ajax errorThat's exactly what should be done. Oddly there was another thread about that earlier today. Allan
- 27th Aug 2016Ajax Json data using some Tables with optionsLooks like I got here a little too late to help. Glad you got it solved though! And welcome to the forums
- 11th Aug 2016How to change error message in lightbox upon Ajax submission error?Great, thanks! Here's what I ended up doing: //... editor.on('submitError', function(e, xhr, err, thrown, data) { if (xhr.status == 400 && xhr.responseText.includes("Unable to login with provided credentials.")) { editor.error('Identifiants incorrects. Veuillez réessayer.'); } }); //...
- 25th Jun 2016Ajax - Requesting remote URL Json File, while get "Invalid JSON response"!Tom, thank your immediate assistance. I started to modify the code, while still failed. As I am new to DataTable, so I will take time to study more and see if I am able to find the code error out. Best Regards BewweB
- 24th Jun 2016Row reorder is not working with ajax dataBy the way. I found the solution in this thread: https://datatables.net//forums/discussion/30214 The final answer shows a working solution; https://jsfiddle.net/k7d68xvb/5/ You have to add the "dataSrc" attribute e.g: rowReorder: {dataSrc: 'positionY'}
- 16th Jun 2016Refresh the table without AjaxWhen you add data to DataTables, it creates a cached version of it for faster sorting, filtering, etc. Please see my response here I would like to point out that rows().invalidate() will accept any updates to the original data and re-render. So if you change the data behind a row and then call row().invalidate().render() on that row, you will see update values.
- 27th May 2016ajax call on button click not working when responsiveAnybody please?
- 1st Apr 2016Can't Get Simple Ajax with JSON Object Data To WorkThanks! I knew it was something super simple. I should have looked at the console...Oops.
- 29th Mar 2016Ajax call delivers valid JSON on one page but invalid on another with basically same codeThank you Allan! That is exactly what it was. It had a tab before the data. Remove that and it works fine.
- 5th Mar 2016Editor ajax overrideYou are correct - in Editor preSubmit is the way to do it. "Discussions" (as opposed to "Questions") can't be closed. But anyone reading this will realised it has been resolved! Allan