How Call _fnProcessingDisplay inside my function?
How Call _fnProcessingDisplay inside my function?
sankyu
Posts: 2Questions: 0Answers: 0
Hi, i need to call _fnProcessingDisplay before all the other method as i can display "processing" inside my datatables and after that call some webservice, when the last call was made i recall the _fnProcessingDisplay to hide the "processing".
How can i do that?
How can i do that?
This discussion has been closed.
Replies
/*
* Function: fnShowProcessing
* Purpose: ShowProcessing text
* Returns: -
* Inputs: bool:bShow - if true show text else hide
*/
this.fnShowProcessing = function (bShow) {
var oSettings = _fnSettingsFromNode(this[_oExt.iApiIndex]);
_fnProcessingDisplay(oSettings, bShow);
};