Hello, it seems this post describes a way to integrate the http://ckeditor.com/ or TinyMCE (not sure wish one) but could I ask for help please as to where do you put the code the post suggests in order to use the WYSIWYG editor in a form? I heard it was coming in 1.6 but didn't.
http://www.gravityhelp.com/forums/topic/a-visual-editor-in-gravity-forms
01 <!-- OF COURSE YOU NEED TO ADAPT NEXT LINE TO YOUR tiny_mce.js PATH -->
02 <script type="text/javascript" src="../js/tiny_mce.js"></script>
03 <script type="text/javascript">
04 tinyMCE.init({
05 // General options
06 mode : "textareas",
07 theme : "advanced"
08 });
09 </script>
10 <textarea id="elm1" name="elm1" rows="15" cols="10" style="width: 80%">TEST</textarea>