I have a form HomePage.aspx containing an empty asp:Panel, a dropdownlist letting the user pick an SPFielType... on index changed, my HomePage.aspx.cs page will get the text selected and will load a user control inside the panel, this user control will generate a control based on the spfieldtype chosen by the user and a button calling the validateForm() function... my problem is that the Page_ClientValidate() function inside the validateForm() cant find the validator, i also tried to give a groupname but still not working.
When Im putting the button inside my aspx page (not rendering dynamically) it is validating my page.( <asp:Button ID="submitbutton" Text="Validate" runat="server" />).
But when Im rendering it dynamically , cant validate the form..This is what Im trying to do:

protected override void CreateChildControls()
{
    try
    {
        fieldRenderingControl = this.CreateFieldRenderingControl(this.FieldType);
        this.Controls.Add(fieldRenderingControl);

        Button button = new Button();
        button.UseSubmitBehavior = false;
        button.Text = "ValidateButton";
        button.ID = "ValidateButton";
        button.OnClientClick = "validateForm()";
        this.Controls.Add(button);

        RequiredFieldValidator newValidator = new RequiredFieldValidator();
        newValidator.Text = "***";
        newValidator.ID = "valideee";
        newValidator.EnableClientScript = true;
        newValidator.Enabled = true;
        newValidator.SetFocusOnError = true;
        newValidator.Display = ValidatorDisplay.Dynamic;
        newValidator.ControlToValidate = fieldRenderingControl.ID;
        this.Controls.Add(newValidator);

    }
    catch (Exception ex)
    {
    }

}

// the CreateFieldRenderingControl() function will generate a control based on the argument fieldType chosen by the user.

thanks in advance.

link|improve this question

73% accept rate
Did you try to debug your js code using browser tools like firebug or Web Developer to see where exactly it is failing. – gbs Mar 30 '11 at 17:48
yeah I did.. he cant recognize the validator.. i dono why..i also tried to add the validator on the controls of the SPFIeld but no solution.. – Grace Mar 31 '11 at 10:04
feedback

6 Answers

Sharepoint has an ugly quirk where it can assign a Guid to be the id of a control. I've seen JavaScript that was generated by Sharepoint trying to use these Guids as variable names. This is no good - it breaks scripts - dashes aren't allowed in JavaScript variable names. I suspect this is the problem you are experiencing. And, I'd guess the culprit is this.CreateFieldRenderingControl(). It looks like that method is generating an Id... is that Id a Guid? If so, try to overwrite the Id with something safe, perhaps just remove the dashes from the Guid.

fieldRenderingControl.ID.Replace("-", "");

If this isn't the exact solution, hopefully it's enough to get you pointed in the right direction.

link|improve this answer
feedback

After you loaded the control check the ID control By Firebug or just by see the source of the HTML because there are certain controls that when you put into other controls, their ID change at the rendering. If you can, write the code of the htmnl code also.

link|improve this answer
no i have no problems with ids ..they are rendering fine....this is my function in javascript function ValidateRenderedControl() { Page_ClientValidate(); alert(Page_IsValid); } the alert is always returnin true..which means the validation function is always returning true – Grace Apr 29 '11 at 11:49
feedback

try this(pass group name as argument in Page_ClientValidation function)

Page_ClientValidation("group")
link|improve this answer
yes i already tried that. no luckkkk – Grace May 25 '11 at 13:33
and i also tried this one :this.Page.Validators.Add(newValidator); – Grace May 25 '11 at 13:44
feedback

Try this:

newValidator.ControlToValidate = fieldRenderingControl.ClientID;
link|improve this answer
I got this error: Control 'Field_4a4ab3a1-d5cc-4fbb-a212-ec5697827c75' referenced by the ControlToValidate property of 'valideee' cannot be validated – Grace May 25 '11 at 13:41
feedback

Instead of Page_ClientValidate(), use:

ValidatorValidate("id of field rendering control");

But, in one of your responses, this id is "Field_4a4ab3a1-d5cc-4fbb-a212-ec5697827c75" and this is not a valid client id. Hyphens cannot be used. First, ensure a valid id in client.

link|improve this answer
feedback

Maybe this post is too late... but here are some ideas...
There are several possible things:
(1) The validator and the control to be validated are in the same panel? It is possible that there is a hidden panel while the validation was being done.
(2) If you are creating dynamically, was this creation put on the Page Load? and if so, was created within a function to validate input for the first time? It is possible that it is not necessary to do so.
(3) The use of protected override void CreateChildControls() eventually not runs on all the process of reloading, especially if the ViewState changes in some controls. You can put it in the Page Load.
(4) Other alternative is to place the button inside the Panel, but the visible attribute = false and also the validator, with attribute enabled = false. When you run the action, you change these two States and you can work with the PostBack.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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