Prado\Web\UI\ActiveControls\TBaseActiveCallbackControl::canCauseValidation PHP 메소드

canCauseValidation() 공개 메소드

public canCauseValidation ( ) : boolean
리턴 boolean whether to perform validation if the callback is requested.
    public function canCauseValidation()
    {
        if ($this->getCausesValidation()) {
            $group = $this->getValidationGroup();
            return $this->getPage()->getValidators($group)->getCount() > 0;
        } else {
            return false;
        }
    }