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

ensureRenderInForm() 공개 메소드

Ensures the control is rendered within a form.
public ensureRenderInForm ( $control )
    public function ensureRenderInForm($control)
    {
        if (!$this->getIsCallback() && !$this->_inFormRender) {
            throw new TConfigurationException('page_control_outofform', get_class($control), $control ? $control->getUniqueID() : null);
        }
    }