function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
aswanijagadesh1.397398535585991E12aswanijagadesh1.397398535585991E12 

how to select multiple rows at a time in page block table?

Ramu_SFDCRamu_SFDC
You need to include a checkbox field on each row by making use of Wrapper class that wraps each and every record with a selectable checkbox. Please follow the guidelines explained in the below article

http://wiki.developerforce.com/page/Wrapper_Class
aswanijagadesh1.397398535585991E12aswanijagadesh1.397398535585991E12
here i don't use any check box or radio button,just by click on rows only i have to select multiple
<apex:page standardController="account" recordSetVar="arecs">
<apex:pageBlock >

<apex:pageBlockSection title="Account Records">
      
       <apex:pageBlockTable value="{!arecs}" var="item">
          <apex:column value="{!item.id}"/>
        <apex:column value="{!item.name}"/>
            <apex:column value="{!item.phone}"/>
            <apex:column value="{!item.billingcity}"/>
       </apex:pageBlockTable>
      
</apex:pageBlockSection>

</apex:pageBlock>   
</apex:page>
sample to practies guide me urgent
Ramu_SFDCRamu_SFDC
It is not possible using standard features or standard coding, you may probably try out with javascript. The below post seems promising.

http://salesforce.stackexchange.com/questions/23333/get-data-when-click-on-row-in-pageblocktable