Prado\Web\UI\ActiveControls\TActiveRadioButton::renderInputTag PHP Method

renderInputTag() protected method

Since 3.1.4, the javascript code is not rendered if {@link setAutoPostBack AutoPostBack} is false
protected renderInputTag ( $writer, $clientID, $onclick )
    protected function renderInputTag($writer, $clientID, $onclick)
    {
        parent::renderInputTag($writer, $clientID, $onclick);
        if ($this->getAutoPostBack()) {
            $this->getActiveControl()->registerCallbackClientScript($this->getClientClassName(), $this->getPostBackOptions());
        }
    }