-
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, 11 months ago by
Shubham.
-
This discussion was modified 8 years, 11 months ago by
Log In to reply.
Popular Salesforce Blogs

AI and APEX: How to Make a Developer's Life Easier in 2024
In this article, we will consider 3 tools that will help you as an APEX developer. Honestly not only with APEX, but with all languages…

How to Import multiple images into Salesforce Document folder?
Hello Everyone, Many times we need to import multiple images that are been available into our laptops to the Salesforce org. Yes, I do agree the…
Popular Salesforce Videos
Customize Salesforce Lightning Home page
In this video Signiforce shows : How to customize the Salesforce Lightning Home page. Update an existing Salesforce lightning home page or create a new…
5 Pillars of a Successful Salesforce DevOps Process
Looking to improve your release and issue resolution times using Salesforce DevOps methodologies? DevOps is a software development and delivery process enabling seamless collaboration between…
Salesforce User Experience UX Designer Certification
The Salesforce User Experience (UX) c is designed for individuals who have at least 6 months in UX design and 3–6 months’ experience utilizing UX…