You need to sign in to do that
Don't have an account?

how to see the datePicker in my page?
Hi,
I dont see the datepicker in the page, Am I missing something? javascript? Css?
My Component:
<apex:component controller="HRFormController"> <apex:panelGrid columns="2" cellpadding="0" cellspacing="0"> <apex:outputLabel value="FirstName:" for="firstname"/> <apex:inputText id="firstname" value="{!ControllerCase.HEAT_Firstaname__c}" styleclass="text"/> <apex:outputLabel value="Surname:" for="surname"/> <apex:inputText id="surname" value="{!ControllerCase.HEAT_Surname__c}" styleclass="text"/> <apex:outputLabel value="Start Date" for="joinerStartDate"/> <apex:inputField id="joinerStartDate" value="{!ControllerCase.HEAT_Start_Date__c}"/> <apex:outputLabel value="Start Date" for="joinerStartDate"/> <apex:inputField id="joinerStartDate" value="{!ControllerCase.HEAT_Start_Date__c}"/> </apex:panelGrid> </apex:component>
Are you using standard salesforce headers in the page? Is the input field you are expecting the date picker on a date/date time field?
What you can do is use the JQyuery datepicker for that check this link:
http://wiki.developerforce.com/index.php/Code_Samples#jQuery_DatePicker_Component_for_Selecting_Date_in_VisualForce_Page
Or you can check if this post help you on what you need:
http://community.salesforce.com/t5/Visualforce-Development/DatePicker-does-not-show-for-date-fields/td-p/88045
Does it help you?
{!ControllerCase.HEAT_Start_Date__c} is a Date field, does it have to be time too?
what do you mean with standard headers in the page? here is the head section:
the link you passed me said:
you simple place a call like: <c:jQueryPickDate pickDateLabel="Pick Date:" pickDateField="selectDate" value="{!selectedDate}" />
But it doesn't work because the component "jQueryPickDate" doesn't exist.