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
Alexy1967Alexy1967 

site does not work with IE

Hi

 

I have created a very simple site to allow users to book an exam date.

 

The site works as required in firefox and safari but I'm having issues trying to get it to work in IE7 or IE8.

 

Firstly, the page will not render correctly, telling me that my "'DatePicker' is undefined"

 

Secondly, the link to today's date does not work and the pop up calendar does not work.

 

Here is my code:

 

VF Page: <apex:page standardcontroller="Exam_Booking__c" extensions="ExamBooking" sidebar="false" standardStylesheets="true" showHeader="false"> <html> <body> <apex:form > <apex:pageBlock > <br></br> <br></br> <apex:image value="{!$Resource.AAPT_Logo_2009}" width="150" height="30"/> <br></br> <br></br> <h1>AAPT Business Solutions Product Accreditation Program</h1> <br></br> <br></br> <h1>Exam Registration</h1> <br></br> <br></br> <apex:panelGrid columns="2" cellpadding="3"> <apex:outputText value="First Name"/> <apex:inputField value="{!Exam_Booking__c.First_Name__c}" required="true" /> <apex:outputText value="Last Name"/> <apex:inputField value="{!Exam_Booking__c.Last_Name__c}" required="true" /> <apex:outputText value="Phone"/> <apex:inputField value="{!Exam_Booking__c.Phone__c}" required="true" /> <apex:outputText value="Email"/> <apex:inputField value="{!Exam_Booking__c.Email__c}" required="true" /> <apex:outputText value="Subject"/> <apex:inputField value="{!Exam_Booking__c.Subject__c}"required="true" /> <apex:outputText value="Date"/> <apex:inputfield value="{!Exam_Booking__c.Date__c}"required="true" /> </apex:panelGrid> <br></br> <br></br> <apex:pageMessages /> <apex:pageblockButtons location="bottom"> <apex:commandButton value="Save" action="{!Save}" /> <apex:commandButton value="Cancel" action="{!cancel}" /> </apex:pageBlockButtons> </apex:pageBlock> </apex:form> </body> </html> </apex:page> Controller: public class ExamBooking { private final Exam_Booking__c ExamBooking; public ExamBooking (ApexPages.StandardController stdController) { this.ExamBooking = (Exam_Booking__c)stdController.getRecord(); } public PageReference save() { try { insert(ExamBooking); } catch(System.DMLException e) { ApexPages.addMessages(e); return null; } PageReference p = Page.publicthankyou; p.setRedirect(true); return p; } }

 

 

Any thoughts would be most appreciated

 

Thanks in advance

dev7894dev7894

I too faced the similer kind of a situation with IE6 - I have a site form that renders perfect with anyother browser other than IE6.

 

This Doc might help - "BROWSER SUPPORT AND CONFIGURATION" 

 

Gud luk

 

"Anyone who has never made a mistake has never tried anything new." -- Albert Einstein

Message Edited by dev7894 on 02-19-2010 09:21 AM