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
nimbusprojectnimbusproject 

How do you make popout calendar input box

I was wondering how to make a pop out calendar for an input box that will give the value to sObjects Date field

 

Could you please include a simple example possibly.

WesNolte__cWesNolte__c

Hey

 

You'll need to use and inputfield tied to a date field of an object e.g.

 

 

<apex:form> <apex:inputField value="{!Account.PersonBirthdate}"/> </apex:form>

 

Wes