Salesforce

Salesforce

jQuery

jQuery simplifies the following HTML document traversing Event handling Animating Ajax interactions Advantages: Lightweight Footprint(zipped format) CSS3 Compliant(Supports CSS3) Cross-browser(Supports many browsers) Demo: http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_hide

Salesforce

Pagination using Apex in Salesforce

Sample Code: Visualforce page: <apex:page controller="Sample" > <apex:form > <apex:pageBlock id="details"> <apex:pageblockTable value="{!memb}" var="m"> <apex:column value="{!m.Name}"/> <apex:column value="{!m.Age__c}"/> </apex:pageblockTable> <apex:pageblockButtons > <apex:commandButton value="<<" rerender="details" action="{!beginning}" disabled="{!prev}"/> <apex:commandButton value="<" rerender="details" action="{!previous}" ....