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
viv1viv1 

State and Country picklist on vf page ??

i have activated new sf feature state and country picklist ..
how to add that picklist on vf page ???

Sunny670Sunny670
i think this might help you:
<apex:form>
<apex:outputField value="{!Location.state}"/>
<apex:outputField value="{!Location.city}"/>
</apex:form>
viv1viv1
this standard picklist..in only for account and contact...
and when i am using it its showing only string not picklist
sushant sussushant sus
use inputfield

<apex:inputfield value="{!Location.state}"/>