-
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 10 years, 4 months ago by
Shubham.
-
This discussion was modified 10 years, 4 months ago by
Log In to reply.
Popular Salesforce Blogs
Boost Your Business Growth with Salesforce Managed Services: Key Benefits and Expert Tips
Using the appropriate tools and technologies is essential to staying ahead of the competition in the fast-paced corporate world of today. Salesforce, a leading Customer…
MFA (Multi-Factor Authentication) in Salesforce
Introduction MFA is a special security feature provided by Salesforce that provides an extra layer of protection against suspicious or unauthorised logins. After enabling the…
Display Custom Roll-up Summary on Account | Salesforce Developer Guide
In this blog, I would like you to share, how to display a custom roll-up summary on the account. Before moving to code first create…
Popular Salesforce Videos
Good Time To Buy Salesforce Stock? CRM Stock Analysis
CRM stock price is currently all over after reporting its SALESFORCE earnings report. I am considering if I should buy CRM Stock. This is a…
Understanding Traditional AI vs. Generative AI | Explained Simply
Ever wondered how computers can be taught to think? Or how they create art, music, and stories on their own? If you're curious about these…
Crash Course on Apex Triggers Salesforce | Complete Guide with Real Time Scenarios
Complete guide on Apex Triggers Salesforce 0:00 Intro 0:33 Is Triggers difficult to Learn 0:50 What is Trigger? 3:03 What are Trigger events? 11:55 How…