How to use server side option in Angular DataTables with the Angular way example?
I'm trying to use Angular DataTables with the server side processing option, but when I try to enable it in their " Angular way example ", only the first request gets rendered, the subsequent requests (paging, ordering, searching) are sent but they never update the table. After a little digging, I found an unrelated user contributed note that suggests that you override the ajax option with your own function to handle the server side call. The trick here is to return an empty array to the DataTables callback, so it won't use its renderer to render the table. That will be done by Angular. It's