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
Neha Manchanda 32Neha Manchanda 32 

Date Fields - in VisualForce Pages

Hi, I have a query regarding the Date field functionality. I have created a few custom fields as "Date" and also using the standard Apttus Fields for instance "Agreement Start Date" in my visualforce pages. However, when clicked on to the date field it does not show up the calendar. The calendar shows up in the PageLayouts correctly.

Can you suggest a workaround to fix this issue.

Thanks,
Neha

sagar jogisagar jogi
you can use <apex:inputfield value="{!agmt.Apttus__Start_date__c}" />

when you use <apex;inputfield> tag it will automatically render HTML based on your field data type
Neha Manchanda 32Neha Manchanda 32

Hi Sagar,

I have used the below:
<apex:inputField value="{!Apttus__APTS_Agreement__c.Period_Start_Date__c}" required="true" />

Still I am receiving this issue.

Thanks,
Neha