Adding a required field validator to a SharePoint webpart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:03:47Z http://stackoverflow.com/feeds/question/677485 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart 2 Adding a required field validator to a SharePoint webpart ashwnacharya 2009-03-24T13:50:39Z 2009-08-20T15:54:19Z <p>I am writing a webpart for MOSS 2007. I need to validate a text field in that webpart, or which I am using th required field validator. </p> <p>I am creating the required field validator as follows:</p> <pre><code>vldProjectError = new RequiredFieldValidator(); vldProjectError.ForeColor = Color.Red; vldProjectError.ErrorMessage = Resources.LABEL_PROJECT_ERROR; vldProjectError.ControlToValidate = txtProjectName.ClientID; vldProjectError.Display = ValidatorDisplay.Dynamic; this.Controls.Add(vldProjectError); </code></pre> <p>The above code snippet is in th CreateChildControls() override. When i open this webpart page, i get a generic error message in SharePoint. I cannot trap the error by debugging.</p> <p>I noticed that the exception is thrown after CreateChildControls() and before the Render() method, because the debugger never enters the Render() method</p> <p>Any Idea how to use validators in sharepoint webparts? Is there anything I am missing?</p> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart/677505#677505 0 Answer by strongopinions for Adding a required field validator to a SharePoint webpart strongopinions 2009-03-24T13:54:07Z 2009-03-24T13:54:07Z <p>Did you try enabling error output to the browser in the web.config? Maybe that will give you a more detailed message.</p> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart/678129#678129 2 Answer by dstetsenko for Adding a required field validator to a SharePoint webpart dstetsenko 2009-03-24T16:16:27Z 2009-03-24T16:16:27Z <p>I would try two things:</p> <ol> <li>Enabling error output is definitely helpful while developing for SharePoint, follow <a href="http://www.davehunter.co.uk/Blog/Lists/Posts/Post.aspx?ID=79" rel="nofollow">this post</a> to enable it.</li> <li>Try assigning ControlToValidate property in the Render method, instead of in CreateChildControls. Or at least do it after txtProjectName is added to the control collection.</li> </ol> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart/700434#700434 0 Answer by jaloplo for Adding a required field validator to a SharePoint webpart jaloplo 2009-03-31T07:41:38Z 2009-03-31T07:41:38Z <p>I've had the same problem as you with validator controls. The <strong>controlId</strong> property of the validated control is null until you added it to the controls collection of the webpart. So, the validator has to be configured after this line:</p> <pre><code>this.Controls.Add(txtProjectName); </code></pre> <p>Check this debugging your webpart and look at the ClientId property of the validated control.</p> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart/709727#709727 1 Answer by ashwnacharya for Adding a required field validator to a SharePoint webpart ashwnacharya 2009-04-02T13:32:01Z 2009-04-02T13:32:01Z <p>I was able to solve the problem. </p> <p>we should use </p> <pre><code>txtProjectName.ID = "txtProjectName"; vldProjectError.ControlToValidate = txtProjectName.ID; </code></pre> <p>instead of </p> <pre><code>vldProjectError.ControlToValidate = txtProjectName.ClientID; </code></pre> <p>and this should be done inside CreateChidControls() method.</p> http://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart/1307145#1307145 0 Answer by Srinivas for Adding a required field validator to a SharePoint webpart Srinivas 2009-08-20T15:54:19Z 2009-08-20T15:54:19Z <p>Thanks a lot ashwnan.</p> <p>Your reply really helped me a lot.</p> <p>Thanks, Srini</p>