Prado\Web\UI\ActiveControls\TActiveRatingList::callClientFunction PHP Метод

callClientFunction() защищенный Метод

Calls the client-side static method for this control class.
protected callClientFunction ( $func, $value )
    protected function callClientFunction($func, $value)
    {
        if ($this->getActiveControl()->canUpdateClientSide()) {
            $client = $this->getPage()->getCallbackClient();
            $code = 'Prado.Registry[\'' . $this->ClientID . '\'].' . $func . '(' . $value . ')';
            $client->evaluateScript($code, array($value));
        }
    }