
1 respuesta
HI Sweety,// Controllerpublic Class PassRecordId{public String Id{get;set;}public List<Account> listOfAccounts{get;set;}public List<Account> listOfSelectAccount{get;set;} public PassRecordId(){ ListOfAccounts = [SELECT Id From Account LIMIT 10000] ; } public void AccountRecords(){ listOfSelectAccount = [SELECT Id From Account Where Id =: Id LIMIT 1] ; system.debug(listOfSelectAccount); }}// Page<apex:page controller="PassRecordId" id="thePage"> <apex:repeat value="{!listOfAccounts}" var="AccountId" id="theRepeat"> <apex:selectRadio value="{!Id}"> <apex:selectOptions value="{!AccountId.id}"/> </apex:selectRadio> </apex:repeat><apex:commandButton action="{!AccountRecords}" value="Get Account"/></apex:page>