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
Salma ElmoutaouaffikSalma Elmoutaouaffik 

Calendar view in homepage

Hi,
I want to view only the standard Calendar as my Homepage . How can i do it ?
Leslie  KismartoniLeslie Kismartoni
You could create a VF page that just showed a specific calendar view as an iFrame
<apex:page showHeader="false" sidebar="false">
<iframe src="/00U/c?cType=1&md0=2015&md1=4"/>
</apex:page>
Then, just create a homepage component that references that page and add it to the layout. (probably need to drag the other things off the wide view too)
User-added image


User-added image

I haven't used the Cal very much, so I dunno how well it will work... You're in an iframe, so some links may keep you in there... 
Salma ElmoutaouaffikSalma Elmoutaouaffik
Thank you Leslie, that's exactly what i needed 
Leslie  KismartoniLeslie Kismartoni
Thanks - glad it helped solve the problem!
Trolling for points --> could you mark that a correct solution?