vote up 0 vote down star

I'd like to use an ajaxToolkit:CalendarExtender on an asp:Label. When I attach a CalendarExtender to the label, I get the error:

Extender controls of type 'AjaxControlToolkit.CalendarExtender' cannot extend controls of type 'System.Web.UI.WebControls.Label'.

I'm hoping someone knows a quick trick to allow me to display a date in a label and allow that label to be clicked to trigger/open a CalendarExtender which might target a hidden asp:TextBox... if that's possible.

flag

2 Answers

vote up 1 vote down check

As the error states, the Calendar extender is constrained to extend only textbox controls by default.

Looking at the ASP.NET AJAX Control toolkit page for the Calendar extender, you should be able to use the PopupButtonID to enable the label to trigger the calendar popup (you'll need to add in the unhiding of the textbox too).

link|flag
I think this would be perfect .. but it seems like making the asp:TextBox visible=false prevents the calendar from appearing. – Adam Douglass May 26 at 14:26
That's because setting visible = false in the aspx markup does not output the HTML on the server side to render the textbox on the client side. I would put some JavaScript in the client side function pageLoad() to hide the textbox when the page has loaded – Russ Cam May 26 at 14:59
See here for the pageLoad - stackoverflow.com/questions/416363/… and encosia.com/2007/08/… – Russ Cam May 26 at 15:02
You'll want to set display = none on the textbox when the page has loaded – Russ Cam May 26 at 15:06
vote up 0 vote down

If you have the source code of AjaxControlToolkit you can edit CalendarExtender.cs and then change

[TargetControlType(typeof(TextBox))]

and put Label (or Control if you want to have only one calendar extender) . Don't know how that will afect general behaviour of the Extender.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.