
Untitled
By: a guest on
Apr 28th, 2012 | syntax:
None | size: 0.84 KB | hits: 16 | expires: Never
Salesforce Sites Calendar Not displaying
<apex:page controller="newController">
<apex:form >
<apex:pageBlock title="Welcome {!$User.FirstName}"></apex:pageBlock>
<apex:pageBlock mode="edit">
<apex:pageBlockSection title="Travel Details" >
<apex:inputField value="{!Booking.StartDateTime__c}"></apex:inputField>
<apex:inputText value="{!Booking.EndDateTime__c}"></apex:inputText>
<apex:inputField value="{!Booking.StartLocation__c}"></apex:inputField>
<apex:inputField value="{!Booking.EndLocation__c}"></apex:inputField>
</apex:pageBlockSection>
</apex:form>
<apex:page standardController="Booking__c">
<apex:form >
<apex:inputfield value="{!Booking__c.StartDateTime__c}"/>
<apex:inputfield value="{!Booking__c.EndDateTime__c}"/>
</apex:form>
</apex:page>