Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.84 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Salesforce Sites Calendar Not displaying
  2. <apex:page controller="newController">
  3.        
  4. <apex:form >
  5.  
  6.     <apex:pageBlock title="Welcome {!$User.FirstName}"></apex:pageBlock>
  7.  
  8.  
  9.     <apex:pageBlock mode="edit">
  10.  
  11.         <apex:pageBlockSection title="Travel Details" >
  12.  
  13.            <apex:inputField value="{!Booking.StartDateTime__c}"></apex:inputField>
  14.  
  15.             <apex:inputText value="{!Booking.EndDateTime__c}"></apex:inputText>
  16.  
  17.             <apex:inputField value="{!Booking.StartLocation__c}"></apex:inputField>
  18.  
  19.             <apex:inputField value="{!Booking.EndLocation__c}"></apex:inputField>
  20.  
  21.      </apex:pageBlockSection>
  22.  
  23.     </apex:form>
  24.        
  25. <apex:page standardController="Booking__c">
  26.   <apex:form >
  27.     <apex:inputfield value="{!Booking__c.StartDateTime__c}"/>
  28.     <apex:inputfield value="{!Booking__c.EndDateTime__c}"/>
  29.   </apex:form>
  30. </apex:page>