Prado\Web\UI\ActiveControls\TBaseActiveControl::canUpdateClientSide PHP Метод

canUpdateClientSide() публичный Метод

Is is true if the control is initilized, and is a callback request and the {@link setEnableUpdate EnableUpdate} property is true and the page is not loading post data.
public canUpdateClientSide ( $bDontRequireVisibility = false ) : boolean
Результат boolean true if the callback response is allowed update client-side contents.
    public function canUpdateClientSide($bDontRequireVisibility = false)
    {
        return $this->getControl()->getHasChildInitialized() && $this->getPage()->getIsLoadingPostData() == false && $this->getPage()->getIsCallback() && $this->getEnableUpdate() && ($bDontRequireVisibility || $this->getControl()->getVisible());
    }