Search Contact Records Using Pagination in apex
Requirement : Create a visual force page create a TextBox for Last Name and another is Mobile Phone when User enter the value then corresponding data should be visible in a table Solution: VFPageCode <apex:page controller="ContactMultipleSearchWithPagenationCLS" action="{!searchcon}"> <script type="text/javascript"> window.onload=function() { // document.getElementById("{!$Component.thePb.thepbs.conName}").focus(); } </script> <apex:form > <apex:pageBlock id="thePb" title="Contact Details To Search"> <apex:pageblockSection id="thepbs"> <apex:inputField value="{!con.LastName}" required="false" id="conName"/> ...