Dynamically adding rows in apex pageBlock
Visualforce code: <apex:page sidebar=”false” controller=”MemberPopup” > <apex:form > <apex:pageBlock id=”membAdd” > <apex:pageblockSection > <apex:pageBlockTable value=”{!memberAddList}” var=”memb”> <apex:column headerValue=”Member Name”> <apex:inputField value=”{!memb.Name}”/> </apex:column> <apex:column headerValue=”Mobile Number”> <apex:inputField value=”{!memb.Mobile_Number__c}”/> </apex:column> <apex:column headerValue=”eMail Id”> <apex:inputField value=”{!memb.E_Mail_Id__c}”/> </apex:column> </apex:pageBlockTable> <br/><apex:commandLink value=”Add Row” action=”{!addRow}” reRender=”membAdd”/> … Continue reading Dynamically adding rows in apex pageBlock
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed