-
Add 'Select All' functionality in pageBlockTable
How can i add 'Select All' 'Deselect All' functionality to pageblocktable which is iterating a wrapper list (checkbox and list of products). Like when inputcheckbox with id="mainbox" is checked all the inputcheckbox with id = "checkbox" should get selected.
<apex:pageBlockTable value="{!wrapProductList}" var="prd" title="Products" id="prdtList">
<apex:column >
<apex:facet name="header"><apex:inputCheckbox id="mainBox"/></apex:facet>
<apex:inputCheckbox value="{!prd.isSelected}" id="checkBox"/>
</apex:column>
<apex:column >
<apex:facet name="header">Product Name</apex:facet>
<apex:outputText value="{!prd.prdt.Name}"/>
</apex:column>
<apex:column >
<apex:facet name="header">Product code</apex:facet>
<apex:outputText value="{!prd.prdt.ProductCode}"/>
</apex:column>
<apex:column >
<apex:facet name="header">Sales Price</apex:facet>
<apex:outputText value="{!prd.prdt.UnitPrice}"/>
</apex:column>
</apex:pageBlockTable>- This discussion was modified 8 years, 4 months ago by Shubham.
Log In to reply.
Popular Salesforce Blogs
How to Manage Closed-Lost Leads in Salesforce that Comes Back Again
As a salesperson, you want to successfully convert every lead you get but the task is actually a tall order. Based on initial interaction, you…
How Can You Get High Output With Salesforce DX and Enjoy Lots of Benefits
What is it that has driven app developers crazy after Salesforce DX? There must be some important reasons and features in it, which makes it…
Why Should You Attend Salesforce Dreamforce 2019 & How To Make The Most Out Of It?
Dreamforce is a yearly conference that takes the full Salesforce people group composed. SF clients, workers, partners, and important partners gather in San Francisco over…
Popular Salesforce Videos
Why To Sell Your SAAS Application On Salesforce AppExchange ?
From unparalleled market reach to seamless integration and trusted security, explore the benefits that await SAAS entrepreneurs on Salesforce AppExchange. Watch our latest webinar to…
Salesforce Winter'21 New Apex Features
So wait is over... In this tutorial we would discuss many new Apex Features as below : Use Safe Navigation Operator PATCH HTTP Method in…
The Secret Truth of Automating Processes in Salesforce
Just because you CAN AUTOMATE something in Salesforce, DOESN'T MEAN YOU SHOULD! Join for an insightful and entertaining discussion where you will learn: - How…