AJAX Calendar extender issue

  • Thread starter Thread starter Abhilash
  • Start date Start date
A

Abhilash

Hi,
I am using AJAX calendar extender.Everything is works fine on date selection
from pop up image option but when i dont select a date and click outside on
the page,calender remains poped up,it doesn't hide.It hides only when date is
selected.Is there any workaround for this?

Thanks
 
Hi,
I am using AJAX calendar extender.Everything is works fine on date selection
from pop up image option but when i dont select a date and click outside on
the page,calender remains poped up,it doesn't hide.It hides only when dateis
selected.Is there any workaround for this?

Thanks

The solution my coworker came up with was to make the TargetControlID
property and PopupButtonID property both refer to the extended
control.

<ajax:CalendarExtender ID="CalendarExtender1" runat="server"
TargetControlID="SomeControl"
PopupButtonID="SomeControl"
Format="M/d/yyyy" />

Seems to work fairly well.
 
Hello,
Thanks for the response.I tried your way but it is not responding
well.Popupbutton ID for me is Image1 and TargetControlID is Date3(which is
Textbox control).Should i change the name of TextboxID itself?
 
Back
Top