Spring and DataTables

Spring and DataTables

fjr_wlbfjr_wlb Posts: 3Questions: 1Answers: 0

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

  • tangerinetangerine Posts: 3,365Questions: 39Answers: 395
    Answer ✓

    You would probably do better asking on a Spring site. It's a Spring error.

  • fjr_wlbfjr_wlb Posts: 3Questions: 1Answers: 0

    ok, thanks

  • fjr_wlbfjr_wlb Posts: 3Questions: 1Answers: 0

    As a follow up: I set deferRender: true and searching: false and it allowed for a successful POST.

This discussion has been closed.