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
Raghu NaniRaghu Nani 

How to add Home Calender Section in Visualforce Page and how to do New Meeting Request from Visualforce

How to add Home Calender Section in Visualforce Page ,
If  calender not possible, Pls suggest How to do New Meeting Request from Visualforce page and along with i need to display( Scheduled Meetings & Requested Meetings ) in Visualforce Page

Pls Help me ASAP
Thanks 
Raghu
NagendraNagendra (Salesforce Developers) 
Hi Raghu,

Well when you use <apex:inputfield value="">. When you bind the value with field type of date/date time it will automatically display calendar on your VF page like this:
<apex:page standardController="Account" >
 <apex:form> 
<apex:inputField value="{!account.AshishPackage__SLAExpirationDate__c}"/>
</apex:form>
</apex:page>
In order how to schedule a meeting request please check with below links: Regards,
Nagendra.

 
Raghu NaniRaghu Nani
Hi Nagendra,
      Thanks for responding, The above links also they are trying to do same functionality "New Meeting Request " From Visualforce page, but they didnt get the solution , is this possible achieve  "new Meeting Request" in visualforce page

Thanks
Raghu