You need to sign in to do that
Don't have an account?
help on class and vf page....
Hello all,
below is my question...please help me out in calling vf page after selecting one record from list... :
¢Create a VF page and VF component.
¢In the 1st page, get all the Opportunities in a <apex:selectList>.
¢On select of the Opportunity, go to the 2nd page where you can edit/save selected opportunity's StageName, Close Date.
<apex:selectList value="{!oppName}" onChange="navigateToOpp(this.value)">
<apex:SelectOptions value="{!OppNames}" />
</apex:selectList>
function navigateToOpp(OppId){
window.open('/apex//secondVF?Id='+OppId,'_self')
}