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
krishna guptakrishna gupta 

I have a one defect where apex:inputcheckbox is used inside the <apex:pageblockbuttons> and located for both location

I have a one defect where apex:inputcheckbox is used inside the <apex:pageblokbuttons> and located for both location. If I am selecting at top checkbox, then it is working, if i am selecting the bottom checkbox, it is not working.

Is there any way that if I do check in one place, it should checked at both places.
 
<apex:pageBlockButtons location="both">               
	<apex:outputText value="Testing" />
	<apex:inputCheckbox id="test" value="{!test}"   />
</apex:pageBlockButtons>