You need to sign in to do that
Don't have an account?

way to stop Date popup on Events???
Is there a way to STOP the annoying auto-popup of the calendar picker for the Date field on the Events (Activities)? I'd LOVE to turn it off on my Visualforce pages, but can't seem to do so.
just place the script
<script>
function setFoucsOnLoad(){}
</script>
All Answers
I think your date field is the first field on you VFP so the default focus is set on this that's why it is coming. Just change the order of date field or in javascript change focus to some other control.
let me know if any issue in it.
just place the script
<script>
function setFoucsOnLoad(){}
</script>
Similar post for more help :
http://boards.developerforce.com/t5/General-Development/How-to-disable-the-date-picker-popup-default-open-when-page-load/m-p/301261
Thanks
Ankit Arora
Blog | Facebook | Blog Page
Fabulous, I just stuck
after my <apex:page> line, and that seems to fix it! Thanks! (also note spelling on Focus)