Hello all,
I hope you can help me with a problem. I want to post a form with multiple fields, including a FCKEditor field. Unfortunately, all fields are posted correctly, but not the FCKEditor field. Whatever changes I make to this field, it only posts the value it already had. Effectively I can't make changes. Below you can find my code (it is within ColdFusion, but that shouldn't matter), I've stripped all non-relevant data out of the form.
I'm really looking forward to your answer, because frankly I'm at a loss.
Marcel
I hope you can help me with a problem. I want to post a form with multiple fields, including a FCKEditor field. Unfortunately, all fields are posted correctly, but not the FCKEditor field. Whatever changes I make to this field, it only posts the value it already had. Effectively I can't make changes. Below you can find my code (it is within ColdFusion, but that shouldn't matter), I've stripped all non-relevant data out of the form.
<cfoutput> <form method="post" action="#attributes.url_result#"> <label for="nte_html">details</label> <script type="text/javascript"> <!-- var oFCKeditor = new FCKeditor( 'nte_html' ); oFCKeditor.BasePath = '#request.fckeditor_basepath#'; oFCKeditor.Value = '#attributes.nte_html#' ; oFCKeditor.ToolbarSet = "Kolombeperkt"; oFCKeditor.Create(); //--> </script> <input type="submit" name="knop" value="wijzig" /> </form> </cfoutput>
I'm really looking forward to your answer, because frankly I'm at a loss.
Marcel
Re: My form doesn't post the changed values