2amigos / yii2-tinymce-widget

TinyMCE WYSIWYG widget for Yii2
http://yiiwheels.com
Other
100 stars 48 forks source link

Fill textarea onkeyup #17

Closed Inttegrum closed 9 years ago

Inttegrum commented 9 years ago

Is it possible to change de textarea value onkeyup event?

I'm trying to save a text via AJAX but the textarea isn't changing whem I'm editing it.

Inttegrum commented 9 years ago

Solved with tinymce.triggerSave(); before trying to save it with AJAX.

tonydspaniard commented 9 years ago

@Inttegrum was it with https://github.com/2amigos/yii2-tinymce-widget/blob/master/src/TinyMce.php#L78 ?

Inttegrum commented 9 years ago

No.

On my own onClick event I called tinymce.triggerSave(); before getting the data from the form and sending it via AJAX.