
1 件の回答
Hi Zabi,Please see the link below:http://blogforce9.blogspot.com.au/2013/11/pageblocktableenhanceradv-yet-another.htmlBasically, you can install it into your salesforce org. It will then be a component inside your org, after this it is simply a matter of adding this tag to your page, i guess the best place would be under the apex:page tag:<c:PageBlockTableEnhancerADV targetPbTableIds="pbtSur" pageSizeOptions="5,10,15" defaultPageSize="5" enableExport="False"/>where it says targetPbTableIds="pbtSur", just put your pageblocktable id in, exampel:<apex:pageBlockTable value="{!account.Transactions__r}" var="Tra" cellPadding="4" border="4" id="pbtSur">The pageblocktable will morph into a new skin and you will be able to use pagination among other things, just remember to isntall the pageblocktable enhancer by following the links on the website. Best regardsNaga Kiran