When using the <apex:input> Visualforce (VF) tag with the type='date' attribute, the date picker UI may not appear in certain browsers. This occurs because <apex:input> supports HTML5 input types, but not all browsers implement the HTML5 date input type with a visual calendar date picker. Unsupported browsers display a plain text input field instead of a date picker. This is a known browser compatibility limitation and is not a Salesforce bug.
The <apex:input type='date'> element relies on the browser's native implementation of the HTML5 date input type. Browsers that do not support this HTML5 input type will render a plain text field instead of a calendar date picker. For a current list of browser compatibility with the HTML5 date input type, see the MDN Web Docs link in Additional Resources below.
To display a date picker reliably across all Salesforce-supported browsers, replace <apex:input type='date'> with <apex:inputField>.
The <apex:inputField> tag binds directly to a Salesforce standard or custom object field and renders the appropriate native Salesforce date picker, which is consistent across all supported browsers.
Example:
Replace: <apex:input type="date" value="{!myDateVariable}" />
With: <apex:inputField value="{!myRecord.DateField__c}" />
<apex:inputField> requires binding to a Salesforce standard or custom object field. It cannot be used with a standalone Apex controller property that is not bound to a Salesforce object field.
If your page uses a controller property (not bound to an object field), consider the following alternatives:
000386422

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.