Prado\Web\UI\TPage::registerRequiresPostData PHP 메소드

registerRequiresPostData() 공개 메소드

This method needs to be invoked if the control to load post data may not have a post variable in some cases. For example, a checkbox, if not checked, will not have a post value.
public registerRequiresPostData ( $control )
    public function registerRequiresPostData($control)
    {
        $id = is_string($control) ? $control : $control->getUniqueID();
        $this->_controlsRegisteredForPostData[$id] = true;
        $params = func_get_args();
        foreach ($this->getCachingStack() as $item) {
            $item->registerAction('Page', 'registerRequiresPostData', array($id));
        }
    }