Anyone know how to have the calendar view expanded all by default?? Seen a lot of information on how to do this with SP 2007 but not SP 2010.
|
|
Kuldeep, thanks for this script! I have modified it slightly to expand all rows of the calendar by removing the break and checking to see if the anchor text is "collapse". If it's not "collapse", a click is executed. Note that you only need to click on one item per row. Otherwise, you might toggle back to collapsed. Another problematic side effect of adding the CEWP to the Calendar page is that you lose the Change View dropdown. You have to use the calendar ribbon to change views. I would also like to find a more robust solution, but here is my slighly improved solution:
|
|||
|
|
|
Two options for this one. Stick one or the other of the following in a CEWP. The first one will override the function that is used to determine how many items to display before showing the expand/collapse link. I have set this to 100 in the example below to ensure that in my use case, I never even see the expand/collapse buttons and I always get every item rendered all the time.
The second option overrides the calendar notify event, so that after all the items are rendered, the script will find the first calendar instance, and call it's expand all function. This will ensure every cell is expanded by default but will still show the collapse links.
|
|||||||
|
|
Not the best approach but it works, add the following script on your page in CEWP or inline:
What it does is after the calendar is loaded it searches for the first expand link and simulates a click. I had to use the traditional Javascript as I cannot trigger click using JQuery, because the click method is not added using JQuery. Let me know if somefine finds a better solution. |
|||||
|