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
vamshi(Nani)vamshi(Nani) 

Binding Record types in Visualforce Pgae

Hi Guys,
 

I am trying to bind recordtype pick list values with visualforce page, but I have got following exception.Can any body please help me.

<apex:page standardController="Opportunity">
    <apex:form >
            <apex:selectlist>
            <apex:selectOptions value="{!RecordType}"/>
            </apex:selectList>
    </apex:form>
</apex:page>

Error: Unknown property 'OpportunityStandardController.RecordType'

Anoop yadavAnoop yadav