I have the code below in jsp to create a dataTable. I use bProcessing as true, which displays a processing indicator until I get data from the server. I want to show the message as "load data .." instead of "processing". I tried using sProcessing, as suggested on different sites, but it does not work?
customersTable = $('cutomer').dataTable({ "sAjaxSource": "ajax url", "bProcessing":true, "bDeferRender": true, "sServerMethod": "POST", "oLanguage": { "sProcessing": "loading data..." } });
source share