View previous topic :: View next topic |
Author |
Message |
njpmr
Joined: 28 Feb 2010 Posts: 24
|
Posted: Mon Jun 13, 2011 12:31 pm Post subject: Keep Calendar Open |
|
|
I would like to prevent the calendar from closing. I know that gbautoclose will keep it from closing when a date is selected, but I would like to have the calendar remain open even when other objects on the page are clicked.
What is the best way to do this? Thanks for your help.
|
|
Back to top |
|
|
calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Mon Jun 13, 2011 11:39 pm Post subject: |
|
|
Go to the ipopeng.htm file, find and delete the following code at the very bottom:
Code: |
var __omd=gContainer.document.onmousedown?gContainer.document.onmousedown:null;
gContainer.document.onmousedown=function(e){
var n=!e?gContainer.event.srcElement:e.target;
if (!(/PopcalTrigger/i.test(n.className)||/popcal/i.test(n.name))) fHideCal();
if (__omd) __omd(e);
}
|
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|
Back to top |
|
|
|