binary json
binary json
jamieb22
Posts: 10Questions: 7Answers: 0
Can you make datatables support a binary json protocol like protobuf or messagepack?
This discussion has been closed.
Answers
Support for binary JSON won't be built into DataTables core, but it is easy to make use of it with the
ajax.dataSrc
option. DataTables will make the request to get the data, then inajax.dataSrc
you use whatever library you require to deserialise the data into plain JSON and return that from the function so DataTables can see it.Allan