You need to sign in to do that
Don't have an account?

How to put another checkbox on second Pageblock?
How can i put another checkbox on second Pageblock table Here is my code:
and here is my controller :
Thanks!
AJ
<apex:page controller="AccountSelectClassController" sidebar="false"> <!-- CheckBox --> <script type="text/javascript"> function selectAllCheckboxes(obj,receivedInputID){ var inputCheckBox = document.getElementsByTagName("input"); for(var i=0; i<inputCheckBox.length; i++){ if(inputCheckBox[i].id.indexOf(receivedInputID)!=-1){ inputCheckBox[i].checked = obj.checked; } } } </script> <apex:form > <apex:pageBlock > <apex:pageBlockButtons > <apex:commandButton value="Show Selected Accounts" action="{!processSelected}" rerender="table2"/> </apex:pageBlockButtons> <apex:pageblockSection title="All Accounts" collapsible="false" columns="2"> <apex:pageBlockTable value="{!wrapAccountList}" var="accWrap" id="table" title="All Accounts"> <apex:column > <apex:facet name="header"> <apex:inputCheckbox onclick="selectAllCheckboxes(this,'inputId')"/> </apex:facet> <apex:inputCheckbox value="{!accWrap.selected}" id="inputId"/> </apex:column> <apex:column value="{!accWrap.acc.Name}" /> <apex:column value="{!accWrap.acc.BillingState}" /> <apex:column value="{!accWrap.acc.Phone}" /> </apex:pageBlockTable> <apex:pageBlockTable value="{!selectedAccounts}" var="c" id="table2" title="Selected Accounts"> <apex:column value="{!c.Name}" headerValue="Account Name"/> <apex:column value="{!c.BillingState}" headerValue="Billing State"/> <apex:column value="{!c.Phone}" headerValue="Phone"/> </apex:pageBlockTable> </apex:pageblockSection> </apex:pageBlock> </apex:form> </apex:page>
and here is my controller :
public class AccountSelectClassController{ //Our collection of the class/wrapper objects wrapAccount public List<wrapAccount> wrapAccountList {get; set;} public List<Account> selectedAccounts{get;set;} public AccountSelectClassController(){ if(wrapAccountList == null) { wrapAccountList = new List<wrapAccount>(); for(Account a: [select Id, Name,BillingState, Website, Phone from Account limit 10]) { // As each Account is processed we create a new wrapAccount object and add it to the wrapAccountList wrapAccountList.add(new wrapAccount(a)); } } } public void processSelected() { selectedAccounts = new List<Account>(); for(wrapAccount wrapAccountObj : wrapAccountList) { if(wrapAccountObj.selected == true) { selectedAccounts.add(wrapAccountObj.acc); } } } // This is our wrapper/container class. In this example a wrapper class contains both the standard salesforce object Account and a Boolean value public class wrapAccount { public Account acc {get; set;} public Boolean selected {get; set;} public wrapAccount(Account a) { acc = a; selected = false; } } }When i select on first pageblock it will transfer to another pablock but how can i put another checkbox on second pageblocktable?
Thanks!
AJ
Find below code
Page:
Class:
======
This is ok for you select as best answer!!
No needof creating another Inner class, you can use the existing class. I handled checking and unchecking of checkboxes as well
Regards,
Bhanu Mahesh
selected chk boxes only with chkbox as true.please chk below code.
VFPage:
<apex:page controller="AccountSelectClassController" sidebar="false">
<!-- CheckBox -->
<script type="text/javascript">
function selectAllCheckboxes(obj,receivedInputID){
var inputCheckBox = document.getElementsByTagName("input");
for(var i=0; i<inputCheckBox.length; i++){
if(inputCheckBox[i].id.indexOf(receivedInputID)!=-1){
inputCheckBox[i].checked = obj.checked;
}
}
}
</script>
<apex:form >
<apex:pageBlock >
<apex:pageBlockButtons >
<apex:commandButton value="Show Selected Accounts" action="{!processSelected}" rerender="table2"/>
</apex:pageBlockButtons>
<apex:pageblockSection title="All Accounts" collapsible="false" columns="2">
<apex:pageBlockTable value="{!wrapAccountList}" var="accWrap" id="table" title="All Accounts">
<apex:column >
<apex:facet name="header">
<apex:inputCheckbox onclick="selectAllCheckboxes(this,'inputId')"/>
</apex:facet>
<apex:inputCheckbox value="{!accWrap.selected}" id="inputId"/>
</apex:column>
<apex:column value="{!accWrap.acc.Name}" />
<apex:column value="{!accWrap.acc.BillingState}" />
<apex:column value="{!accWrap.acc.Phone}" />
</apex:pageBlockTable>
<apex:pageBlockTable value="{!selectedAccounts1}" var="c" id="table2" title="Selected Accounts">
<apex:column >
<apex:facet name="header">
<apex:inputCheckbox onclick="selectAllCheckboxes(this,'inputId1')"/>
</apex:facet>
<apex:inputCheckbox value="{!c.selected1}" id="inputId1"/>
</apex:column>
<apex:column value="{!c.acc.Name}" headerValue="Account Name"/>
<apex:column value="{!c.acc.BillingState}" headerValue="Billing State"/>
<apex:column value="{!c.acc.Phone}" headerValue="Phone"/>
</apex:pageBlockTable>
</apex:pageblockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
ApexClass:
public class AccountSelectClassController {
//Our collection of the class/wrapper objects wrapAccount
public List<wrapAccount> wrapAccountList {get; set;}
public List<Account> selectedAccounts{get;set;}
public List<wrapAccount> selectedAccounts1{get;set;}
public AccountSelectClassController(){
if(wrapAccountList == null) {
wrapAccountList = new List<wrapAccount>();
for(Account a: [select Id, Name,BillingState, Website, Phone from Account limit 10]) {
// As each Account is processed we create a new wrapAccount object and add it to the wrapAccountList
wrapAccountList.add(new wrapAccount(a));
}
}
}
public void processSelected() {
selectedAccounts1 = new List<wrapAccount>();
System.debug('WrapAccountList =========>'+wrapAccountList);
for(wrapAccount wrapAccountObj : wrapAccountList) {
if(wrapAccountObj.selected == true) {
selectedAccounts1.add(new wrapAccount(wrapAccountObj.acc,true));
}
}
}
// This is our wrapper/container class. In this example a wrapper class contains both the standard salesforce object Account and a Boolean value
public class wrapAccount {
public Account acc {get; set;}
public Boolean selected {get; set;}
public Boolean selected1 {get; set;}
public wrapAccount(Account a) {
acc = a;
selected = false;
}
public wrapAccount(Account a,Boolean sel1) {
acc = a;
selected1 = sel1;
System.debug('selected1 is========'+selected1);
}
}
}