Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a page that has a listview that is used for inserting and editing records. Assigning a RequiredFieldValidator and ValidatorCallOutExtender to the InsertItemTemplate works well.
When I try to do the same on the EditItemTemplate the ValidatorCallOut appears but with no text in the box. Is there something that I'm doing wrong?

My code for the InsertItemTemplate:

 <asp:TextBox ID="date_timeTextBox" runat="server" Text='<%# Bind("date_time") %>' />
 <asp:RequiredFieldValidator 
      ControlToValidate="date_timeTextBox" 
      ID="RequiredFieldValidator1" 
      runat="server" 
      ErrorMessage="date_time is required" 
      Display="None" 
      ValidationGroup="insert_into">
 </asp:RequiredFieldValidator>
 <cc1:ValidatorCalloutExtender ID="ValidatorCalloutExtender1" 
      runat="server" 
      TargetControlID="RequiredFieldValidator1">
 </cc1:ValidatorCalloutExtender>

And for the EditItemTemplate:

<asp:TextBox 
    ID="date_timeTextBox" 
    runat="server" 
    Text='<%# Bind("date_time","{0:yyyy-MM-dd}") %>' />
<asp:RequiredFieldValidator 
    ControlToValidate="date_timeTextBox" 
    ID="reqDTT"       
    runat="server" 
    ErrorMessage="date_time is required" 
    Display="None" 
    ValidationGroup="edit_validate">
</asp:RequiredFieldValidator>
<cc1:ValidatorCalloutExtender 
    ID="val_reqDTT" 
    runat="server" 
    TargetControlID="reqDTT">
</cc1:ValidatorCalloutExtender>
share|improve this question

1 Answer

up vote 0 down vote accepted

Make sure your ID's are unique across your Templates, so the ControlToValidate="date_timeTextBox" is different.

InsertTemplate

 <asp:TextBox ID="date_timeTextBoxInsert" runat="server" Text='<%# Bind("date_time") %>' />

EditTemplate

 <asp:TextBox ID="date_timeTextBoxEdit" runat="server" Text='<%# Bind("date_time") %>' />
share|improve this answer
Thanks A secondary issue was the color of the EditItemTemplate rows (TR) was set to white (FFFFFF) which makes the text really hard to see on the default yellow background. – John M Sep 16 '09 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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