Posts

Showing posts from May 31, 2016

Search Contact Records Using Pagination in apex

Image
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"/>                 <apex:inputfield value="{!con.MobilePhone}"/>             </apex:pageblockSection>