Questions on functionality for realtime data tables.
Questions on functionality for realtime data tables.
TJ14
Posts: 10Questions: 4Answers: 0
I have set up a simple datatable that takes in an ajax source and calls the fnAjaxReload incrementally. However every time the table reloads a processing message flashes across the screen. Is there a built in way to remove this processing message for every reload? It doesn't make since to use datatable for a realtime function if every second the processing banner is flashing across the table.
This question has accepted answers - jump to:
This discussion has been closed.
Answers
Set processing to false like so:
Thanks for the quick response, but the problem persists. Here is my code, if you can see anything else wrong.
I just realized I had the bProcessing set to true. Thanks for the tip ignignokt.
bProcessing and
processing
are basically the same thing with a (slightly) different name.processing
is the preferred method, but the legacy bProcessing option will override it if specified.Allan