How Call _fnProcessingDisplay inside my function?

How Call _fnProcessingDisplay inside my function?

sankyusankyu Posts: 2Questions: 0Answers: 0
edited July 2011 in DataTables 1.8
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?

Replies

  • sankyusankyu Posts: 2Questions: 0Answers: 0
    CLEARED! - I've created a simple function that i called fnShowProcessing like this
    /*
    * 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);
    };
This discussion has been closed.