Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYG - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:09:37Zhttp://stackoverflow.com/feeds/question/120075http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/120075/problem-with-asp-net-requirefieldvalidator-and-javascript-wysiwyg1Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYGnaspinski2008-09-23T09:41:54Z2008-09-28T22:44:32Z
<p>I am using the open source <a href="http://openwebware.com/" rel="nofollow">Javascript WYSIWYG from OpenWebWare</a> and Asp.Net <strong>RequiredFieldValidator</strong> on the <strong>TextBox</strong> which I am calling the WYSIWYG for. Everything works fine, but the first time I try to submit the form, I get the server-side <strong>RFV</strong> <strong>ErrorMessage</strong> "Required", but if I submit a second time, it goes through.</p>
<p>Am I missing something? I would like to have the client-side validation... how can I get the text to register as not empty?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/120075/problem-with-asp-net-requirefieldvalidator-and-javascript-wysiwyg/120111#1201111Answer by Slace for Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYGSlace2008-09-23T09:49:43Z2008-09-28T22:44:32Z<p>the textarea HTML tag is one of the most unpleasent tags to work with and I'm not 100% sure if the client-side validator will support it, regardless of whether it's a WYSIWYG or not.</p>
<p>I think you'd be best off using a CustomValidator and writing the JavaScript which does the checking manually.</p>
<p>Alternatively you can debug though the JavaScript which is used with FireBug or VS 2008.</p>
http://stackoverflow.com/questions/120075/problem-with-asp-net-requirefieldvalidator-and-javascript-wysiwyg/120246#1202463Answer by Alan Mendelevich for Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYGAlan Mendelevich2008-09-23T10:34:25Z2008-09-23T10:34:25Z<p>I think the reason for this behavior is that validation code runs earlier than the code that updates underlying TextBox from value of WYSIWYG. So the first time you get the error, then the field is updated and the second time you don't get it. Try removing all the content the second time and I bet you wont get validation error (since the value for validator at the moment is what you actually submitted the first time).</p>
<p>The solution would be to find a JavaScript API call for your WYSIWYG which would force the update of the underlying text box field and call it onclick (client-side) of your submit button or whatever you use for that.</p>