Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYG - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:09:37Z http://stackoverflow.com/feeds/question/120075 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120075/problem-with-asp-net-requirefieldvalidator-and-javascript-wysiwyg 1 Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYG naspinski 2008-09-23T09:41:54Z 2008-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#120111 1 Answer by Slace for Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYG Slace 2008-09-23T09:49:43Z 2008-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#120246 3 Answer by Alan Mendelevich for Problem with Asp.Net RequireFieldValidator and Javascript WYSIWYG Alan Mendelevich 2008-09-23T10:34:25Z 2008-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>