Spring and DataTables
Spring and DataTables
I'm trying to do a simple POST within my Spring application. I've started with a basic HTML Table within a
<
form>. It posts fine to the controller fine. I've then tried to add .DataTable(), the table looks/renders fine. But when I do a POST I get an HttpRequestMethodNotSupportedException. Any thoughts or suggestions?
Thanks in advance,
// Code Sample
$(document).ready(function () {
var table = $('#myTables').DataTable();
});
This question has an accepted answers - jump to answer
Answers
You would probably do better asking on a Spring site. It's a Spring error.
ok, thanks
As a follow up: I set deferRender: true and searching: false and it allowed for a successful POST.