Does TinyMCE work in Wappler?

I have been trying to get TinyMCE to send data into a database table column without success. All form fields work as expected except the textarea field. Form gets submitted alright but data inside the TinyMCE textarea doesn’t get inserted into db.

Secondly, How do I get medium editor to show up like one used on Wappler community.

Hi Francis,

Can you paste your code for your textarea here? Be sure your text area has both a ID and a Name. There should be no reason that it shouldn’t work.

Not clear about your second question.

the code below is the tinyMCE bit. All other fields in the form submit data alright except this textarea

<script src="../includes/tinymce/tinymce.min.js" referrerpolicy="origin"></script>
	<script type="text/javascript">
		tinymce.init({
    selector: '#text1',
	height: 300,
		plugins: [
			'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
  		'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
  		'table paste help'
],
  });
	</script>
</head>

The one below is my form

    <div class="col mt-4">
    <textarea id="text1" class="form-control" name="newsBody"></textarea>
    </div>

This is it in design

I am reffering to this box

Did you ever manage to solve this issue with TinyMCE? I’m having the exact same issue where the text area data doesn’t get submitted with a ServerConnect form.

Edit: Figured it out. For the benefit of anyone else wanting to use TinyMCE, add the following to your tinymce.init script.

setup: function(editor) {
    editor.on('change', function() {
        tinymce.triggerSave();
    });
},