Prado\Web\UI\TPage::getCallbackClient PHP Method

getCallbackClient() public method

Gets the callback client script handler that allows javascript functions to be executed during the callback response.
public getCallbackClient ( ) : TCallbackClientScript
return Prado\Web\UI\ActiveControls\TCallbackClientScript interface to client-side javascript code.
    public function getCallbackClient()
    {
        if ($this->getAdapter() !== null) {
            return $this->getAdapter()->getCallbackClientHandler();
        } else {
            return new TCallbackClientScript();
        }
    }