function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ravikanth321ravikanth321 

Radio within a Radio

Please help me with the below code,I want to show the belowpageblocksection only when "continue" button is clicked .
  <apex:pageBlock id="show">
            
             <apex:pageBlocksection title="Select Card Type :">
             <apex:pagemessages />
                <apex:selectRadio value="{!cardType}" layout="pageDirection" >
                    <apex:selectOptions value="{!cardOption}" >
                    </apex:selectOptions>
                    
                </apex:selectRadio><br />
                <apex:commandButton value="Continue" action="{!renderPage}" status="status" rerender="show"/>
                </apex:pageBlocksection>
                
                
                
                 <apex:pageBlocksection title="Select Offer :"  rendered="{!Continue}" >
                 <apex:selectRadio value="{!offerType}" layout="pageDirection" >
                    <apex:selectOptions value="{!offerOption}" >
                    </apex:selectOptions>
                    
                </apex:selectRadio><br />
                <apex:commandButton value="Select" action="{!renderOfferPage}" status="status"/>
            
                </apex:pageBlocksection>
            
            </apex:pageBlock>