Hi All,
I am using the Ajax Calander Control, I have it working in all and I have it writing to a textbox. I have this placed on a form where there are dropdown lists. It seems that the Cal. control always appears behind these dropdownlists instead of infront, therefore making it not visible.
Any work arounds?
Thanks in advance!!!
Tim
Hi tbraga,
I do not notice this behavior and I use VS.NET 2005 sp1 / Ajax Extentions 1 / AjaxControlToolkit 10920.
Can you post code that replicates this behavior?
Kind regards,
wim
Hi Tbraga,
As far as I know, this is a common issue. We suggest that you should upgrade your AJAX Control Toolkit to the latest version. If this doesn't work, you can set its zIndex properties. For example, $find("CalendarExtender's BehaviorID")._popupDiv.zIndex = large enough number.
function pageLoad(){
$find("CalendarExtender's BehaviorID").add_shown(resetZIndex);
}
function resetZIndex(){
$find("CalendarExtender's BehaviorID")._popupDiv.zIndex = value.
}
I hope this help.
Best regards,
Jonathan
No comments:
Post a Comment