OK. For all tose for whom the various above soplutions did not work, I have run into anotehr coningency which apparently affect CalendarEntendar visability.
In may legacy applications there may be instances where a pages <!DOCTYPE> will be marked as HTML4.0:
<!
DOCTYPE HTML
PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
In such cases. You migh try changing this to:
<!
DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Of course, while this will affect your layout which may require a fair amount of adjustment, it seems to do the trick.
MBrookfield
Member
134 Points
32 Posts
Re: How do I get the CalendarExtender to show over a dropdown?
Apr 05, 2007 09:42 PM|LINK
OK. For all tose for whom the various above soplutions did not work, I have run into anotehr coningency which apparently affect CalendarEntendar visability.
In may legacy applications there may be instances where a pages <!DOCTYPE> will be marked as HTML4.0:
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">In such cases. You migh try changing this to:
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">Of course, while this will affect your layout which may require a fair amount of adjustment, it seems to do the trick.