vote up 0 vote down star

I have a page with 3-4 date fields.

I created a Web User control to handle all the client interaction, with a text box, an image and a Calendar extender, So I can just drop one of this controls on the page for each field I need Calendar Controls:

<asp:TextBox ID="DateTextBox" runat="server"></asp:TextBox>
<img id="DateImg" src="../../themes/default/calendar-up.gif"/>
<cc1:CalendarExtender 
     PopupButtonID="DateImg" 
     ID="DateTextBoxCalendarExtender" 
     runat="server" 
     Enabled="True" 
     TargetControlID="DateTextBox"/>

This Web User control exposes the text in DateTextBox.

When I place one of this on the page it works OK, but if I put more, each time I click on an image, all the calendars get opened!

How can I avoid this? Is it naming issue?

flag

1 Answer

vote up 1 vote down

Are you using a unique set of ID, TargetControlID, and PopupButtonID for each TextBox/CalendarExtender/Button combination?

If you are having problems with ASP.NET rotating the IDs, you will have to refer to the associated control like this:

TargetControlID="<%= DateTextBox.ClientID %>"

This will cause ASP.NET to lookup the actual generated ID of DateTextBox, and assign it to TargetControlID.

Do the same for the associated images:

PopupButtonID="<%= DateImg.ClientID %>"
link|flag
This is the thing, since it is a Web user control, the page being rendered changes the IDs for each occurrence of the control on the page. – Nicolas Irisarri Sep 17 at 3:07
@Nicolas, see my edit. – Robert Harvey Sep 17 at 3:32
Actually, the textbox takes the value from the popup Ok, but when I click the image, all popups are displyed. I converted the image to a server control, and tried your solution, but it didn't work. Perhaps you can tell me how can I start debugging this issue... – Nicolas Irisarri Sep 17 at 15:57
I'll try to reproduce the problem later today. – Robert Harvey Sep 17 at 16:46

Your Answer

Get an OpenID
or

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