Hi,
On a node page (not using Views) a textarea is missing a save button. Instead the auto save is active which means you can type only one character and then have to wait until the field is saved in order to type the second character. Imagine you want to type a whole text. It's basically not workable.
Besides that, nice module.
Regards
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | editablefields-2130431-5.patch | 794 bytes | john franklin |
Comments
Comment #1
feuillet commentedSame problem here.
I noticed it only happens when the textarea has a wysiwyg editor (ckeditor in my case).
When i switch over to plaintext editing, it works to enter more than one character.
as soon as i enable the editor back again, with the next keystroke the field is saved and the form closed.
Comment #2
Scheepers de Bruin commentedIf you look in editablefields.js and change line 11 from:
To:
It seems to work... I think CKEditor and the like fire the change event each time a key is pressed
Comment #3
Scheepers de Bruin commentedThis patch does NOT show the save button. It fixes the constant saving issue by changing the ajax saving event to blur, rather than change. WYSIWYG editors seem to fire the change event on each keypress.
Comment #4
john franklin commentedThe patch fixes some textarea issues, but breaks radio buttons.
Comment #5
john franklin commentedAttached patch treats checkboxes and radios different from text fields.