[SalesForce] Not displaying date picker in Internet Explorer

 <apex:input type="date" styleClass="input-text-center" value="{! data.offerDate }" 
                                        rendered="{! IF( AND( data.isField = true, data.isDateField = true ) , true, false ) }" />

The above code is displaying datepicker in chrome but not in IE. Could anyone please help me to resolve this issue.

Best Answer

This seems a known issue, some browsers do not show datepicker when using apex:input tag. You will need to find alternative for this.

Here is the link which says this

You can either use inputField if date is a standard/custom object property or try using jQuery datepicker.