Salesforce

Salesforce

Salesforce Interview questions with answers Part 9

1.       Ajax Components in V.F?apex:actionPoller, apex:actionFunction, apex:actionSupport, etc.2.       Salesforce sites?Used to show data from our organization for public view.3.       Rendered and Re Rendered and Re Renderdas?http://infallibletechie.blogspot.com/2012/10/difference-between-rendered-renderas.html4.       Auto-response rules and Escalation ....

Salesforce

Pagination using apex:dataTable in Salesforce

Sample Code: Visualforce page: <apex:page Controller="sample" sidebar="false" ><apex:form >    <apex:pageblock id="pg" >        <apex:datatable value="{!mem}" var="m" rules="all" border="1" columnsWidth="100px,100px,100px" cellspacing="8" cellpadding="8" rows="5">            <apex:facet name="footer">Total Number of records: {!count}</apex:facet>             <apex:column value="{!m.Name}">                ....