(4.31 Pre-Release 7)
I've been tearing my hair out trying to figure out why date lookups were not working in my application, but worked in the example applications, even though all of the form settings matched. The reason is in the calendar code.
You see, some of my clients wish to use the system's date format (eg. @D17), so the site date format is this instead of @D6.
In All.JS:
// SelectDate
function sd(f,e,p,r,b1,b2){
ct = document.forms[f].elements[e];
switch (p){
case "@D6":
case "@D06":
var c = new calendar6(ct);
break;
case "@D2":
case "@D02":
var c = new calendar2(ct);
break;
}
If the calendar cannot match the user's choice, can at least *any" calendar be presented?
Thanks!