Adding a required field validator to a SharePoint webpart - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T20:03:47Zhttp://stackoverflow.com/feeds/question/677485http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/677485/adding-a-required-field-validator-to-a-sharepoint-webpart2Adding a required field validator to a SharePoint webpartashwnacharya2009-03-24T13:50:39Z2009-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#6775050Answer by strongopinions for Adding a required field validator to a SharePoint webpartstrongopinions2009-03-24T13:54:07Z2009-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#6781292Answer by dstetsenko for Adding a required field validator to a SharePoint webpartdstetsenko2009-03-24T16:16:27Z2009-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#7004340Answer by jaloplo for Adding a required field validator to a SharePoint webpartjaloplo2009-03-31T07:41:38Z2009-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#7097271Answer by ashwnacharya for Adding a required field validator to a SharePoint webpartashwnacharya2009-04-02T13:32:01Z2009-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#13071450Answer by Srinivas for Adding a required field validator to a SharePoint webpartSrinivas2009-08-20T15:54:19Z2009-08-20T15:54:19Z<p>Thanks a lot ashwnan.</p>
<p>Your reply really helped me a lot.</p>
<p>Thanks,
Srini</p>