Prado\Web\UI\ActiveControls\TActivePageAdapter::getCallbackClientHandler PHP Method

getCallbackClientHandler() public method

Gets the callback client script handler. It handlers the javascript functions to be executed during the callback response.
public getCallbackClientHandler ( ) : TCallbackClientScript
return TCallbackClientScript callback client handler.
    public function getCallbackClientHandler()
    {
        if ($this->_callbackClient === null) {
            $this->_callbackClient = new TCallbackClientScript();
        }
        return $this->_callbackClient;
    }