Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a user control with some custom client side validation. When I have the user control on a page, it works no problem. But if that page has a postback event (select a certain option from a dropdown, and more fields are displayed), my validation no longer seems to work. My validation is as follows:

protected void Page_Load(object sender, EventArgs e)
{
    Type cstype = this.GetType();

    if (!Page.ClientScript.IsStartupScriptRegistered(cstype, "ValidatorType"))
    {
        String DateValidator;
        DateValidator = "<script type=\"text/javascript\">\n";
        DateValidator += "function ValidateDate(source, args) {\n";
        DateValidator += "   var ddDay = document.getElementById(source.day);\n";
        DateValidator += "   var day = ddDay.selectedIndex;";
        DateValidator += "   var ddMonth = document.getElementById(source.month);\n";
        DateValidator += "   var month = ddMonth.selectedIndex;\n";
        DateValidator += "   var ddYear = document.getElementById(source.year);\n";
        DateValidator += "   var year = ddYear.selectedIndex;\n";
        DateValidator += "   if (day == 0 || month == 0 || year == 0)\n";
        DateValidator += "      args.IsValid = false;\n";
        DateValidator += "   else\n";
        DateValidator += "      args.IsValid = true;\n";
        DateValidator += "   }\n";
        DateValidator += "</script>";
        Page.ClientScript.RegisterStartupScript(cstype, "ValidatorType", DateValidator);
    }
    Page.ClientScript.RegisterExpandoAttribute(reqDueDate.ClientID, "month", ddMonth.ClientID);
    Page.ClientScript.RegisterExpandoAttribute(reqDueDate.ClientID, "day", ddDay.ClientID);
    Page.ClientScript.RegisterExpandoAttribute(reqDueDate.ClientID, "year", ddYear.ClientID);
}

I'm stumped. Any advice?

EDIT:

Here is the User Control that I am using.

<asp:DropDownList ID="ddMonth" runat="server" AppendDataBoundItems="true">
   <asp:ListItem Value="">--Month--</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="ddDay" runat="server" AppendDataBoundItems="true">
    <asp:ListItem Value="">--Day--</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="ddYear" runat="server" AppendDataBoundItems="true">
    <asp:ListItem Value="">--Year--</asp:ListItem>
</asp:DropDownList>
<asp:CustomValidator ID="reqDueDate" EnableClientScript="true" ClientValidationFunction="ValidateDate" runat="server" ErrorMessage="Required" CssClass="input-notification error png_bg" Display="Dynamic"></asp:CustomValidator>
share|improve this question
Any reason in particular this JavaScript cannot be added to the markup directly or from a file via script tag? – MilkyWayJoe Jul 4 '12 at 16:02
The Javascript is in a user control - so it's not always necessary. I have tried putting the Javascript in my js file, but it didn't do any difference. It seems that the issue is that once the UpdatePanel fires, the original DOM is erased. – MetalAdam Jul 4 '12 at 18:13
~ what fires this validation script? Also if you're not using jQuery, you might want to look into add_endRequest. You can use this handler to rebind your validator to whatever it is that is calling your function – MilkyWayJoe Jul 4 '12 at 18:32
Not using jQuery - just using an ASP Button control. There is a CustomValidator attached to my user control that contains ClientValidationFunction="ValidateDate". – MetalAdam Jul 4 '12 at 18:34

3 Answers

up vote 1 down vote accepted

Turns out, I needed to do 2 things. Put an Update Panel around in my user code, and change the lines

Page.ClientScript.RegisterExpandoAttribute(reqDueDate.ClientID, "day", ddDay.ClientID);

to

ScriptManager.RegisterExpandoAttribute(UpdatePanelDDD, reqDueDate.ClientID, "day", ddDay.ClientID, false);

Thanks all for your help and http://www.aspnetajaxtutorials.com/2010/09/customvalidator-registerexpandoattribut.html for the guidance.

share|improve this answer
cool that you managed to find the answer – MilkyWayJoe Jul 5 '12 at 19:59

You could do something similar to this:

<script type="text/javascript">
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);

var btn = null;

var EndRequestHandler = function(sender, args) {
    btn = document.getElementById('<%= YourButton.ClientID %>');
    btn.onclick = ValidateDate;
};
</script>

or you could attach this to the form submit event in the client

Edit: the endRequest event is fired when MS Ajax completes any asyc request e.g. UpdatePanel updating the DOM. You can find more details here

share|improve this answer
Not sure I follow the mixture of ASP (the first line after <script..) and the javascript here. – MetalAdam Jul 4 '12 at 18:53
just setting an event handler to endRequest event, meaning, when an async request is complete, execute method EndRequestHandler – MilkyWayJoe Jul 4 '12 at 18:59
Not sure where this would fit into my User Control, which can't really target the submit button. I have added my code form my user control in the OP. – MetalAdam Jul 4 '12 at 19:39
Just seen one of your comments on Adil's answer: "but it's the objects that disappear from the DOM when the UpdatePanel refreshes that is the problem". Which objects disappear from the DOM? – MilkyWayJoe Jul 4 '12 at 20:04
The elements that I'm targeting to be validated: e.g. var ddDay = document.getElementById(source.day) source.day is null after a updatepanel refresh. – MetalAdam Jul 5 '12 at 12:27
show 3 more comments

I think your previous binded events are removed. UpdatePanel replaces the contents with the result returned from the server. All the events previously attached will be removed and your custom validation will stop working.

Use jQuery.on() to bind events of validation. Event will be bind again when new content replace previous contents. More about jQuery on

$("#btnSave").on("click", function (e) {
    alert("Clicked");
});

Or

$("#btnSave").on("click", ".SelectorClassIfAny", function (e) {
    alert("Clicked");
});
share|improve this answer
Sorry, but I'm not sure how this answer relates to the problem. – MetalAdam Jul 4 '12 at 17:15
You would have bind ValidateDate with some control and after ajax call this function would have stopped getting called? I have got similar situation with UpdatePanel – Adil Jul 4 '12 at 17:24
The event still gets called no problems - but it's the objects that disappear from the DOM when the UpdatePanel refreshes that is the problem. – MetalAdam Jul 4 '12 at 18:31
This is actually a valid point, except the OP did not add jQuery as a tag to this question so he may not be using jQuery – MilkyWayJoe Jul 4 '12 at 18:33
Adam, this happens because the UpdatePanel re-writes the DOM as it originally was, without any of the bindings as they are not declarative bindings and rather dynamically added (through Page.ClientScript.RegisterStartupScript) – MilkyWayJoe Jul 4 '12 at 18:35
show 1 more comment

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.