• Henry Conn
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies

<apex:page controller="List_Example_2">
    <apex:form>
    <apex:pageblock title="Student" id="fm"    >
        
         
            <apex:pageblockbuttons location="top">
                <apex:commandbutton value="Add" action="{!Addme}" reRender="fm"/>
                <apex:commandbutton value="Clear" action="{!Clearme}" reRender="fm"/>
            </apex:pageblockbuttons>
       
        
        
                    <apex:pageblocksection columns="1">
                        <apex:inputtext value="{!stud.LastName__c}"/>
                        <apex:inputtext value="{!stud.FirstName__c}"/>
                        <apex:inputtext value="{!stud.Phone__c}"/>
                        <apex:inputtext value="{!stud.City__c}"/>
                        <apex:inputtext value="{!stud.Email__c}"/>
                    </apex:pageblocksection>
        
                     <apex:pageblocksection columns="1" rendered="{!Student__c.size>0}">
                     <apex:pageblocktable value="{!Student__c}" var="a">
                         <apex:column value="{!a.LastName__c}"/>
                         <apex:column value="{!a.FirstName__c}"/>
                         <apex:column value="{!a.Phone__c}"/>
                         <apex:column value="{!a.City__c}"/>
                         <apex:column value="{!a.Email__c}"/>
                     </apex:pageblocktable>   
                     </apex:pageblocksection>
              
        </apex:pageblock>
    </apex:form>
</apex:page>