1. No JavaScript onchange event?
Currently looking at this. Here is the latest code I got from the .js file:
function jscalendarCloseCalendar() {
jscalendarHideCalendar();
if( jscalendarMyFacesCtlType!="x:inputDate" )
{
jscalendarCtlToPlaceValue.value =
jscalendarConstructDate(jscalendarDateSelected,jscalendarMonthSelected,jscalendarYearSelected)
var onchange=jscalendarCtlToPlaceValue.getAttribute("onchange");
if(onchange)
{
eval(onchange);
}
}
which is supposed to execute the onchange code, but it doesn't seem to work
correctly. I have changed it to
if(onchange)
{
//eval(onchange);
jscalendarCtlToPlaceValue.fireEvent('onchange');
eval(onchange);
}
which is IE 5.5+ only and doesn't work in FireFox. Anybody has any ideas?
2. If one deletes a few digits from yyyy values, then try to select a calendar
date from the control, the date value shown would be wrong.
3. left1.gif and right1.gif not showing onload. Refer to my previous post for
a workaround.
Wondering what more I can do to help and if anybody else has any thoughts.
Warren