Prado\Web\UI\TPage::getCallbackClient PHP Méthode

getCallbackClient() public méthode

Gets the callback client script handler that allows javascript functions to be executed during the callback response.
public getCallbackClient ( ) : TCallbackClientScript
Résultat 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();
        }
    }