You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Figured out the "intermittent" bit looking at the request to the server on save.
Lets say for example the bio field is "test test test"
load page and makes changes in editor to "test test test1"
Request looks like the following (when save is clicked after the edit made)
Notice that value is still test test test
Regions[0].FieldSet[9].Id: Bio
Regions[0].FieldSet[9].CLRType: Piranha.Extend.Fields.HtmlField
Regions[0].FieldSet[9].Value.Value: <p>test test test</p>
Now, without navigating anywhere, click save again and... it actually saves.
Regions[0].FieldSet[9].Id: Bio
Regions[0].FieldSet[9].CLRType: Piranha.Extend.Fields.HtmlField
Regions[0].FieldSet[9].Value.Value: <p>test test test1</p>
Ok, I'm guessing the error was introduced in 5.1 when the page save was moved over from form submit to ajax post. Given your description it sound like TinyMce doesn't update the backing textarea before the data is submitted to the server.
Has anyone else had an html field, sometimes save and sometimes not?
I am running 5.1.1 currently, confirmed this on a couple of different models, cant get it to consistent;y work/not work
Have tried a different client browser (chrome and IE) to rule out any editor weirdness, fails/consistent behavior on both
Console does not show any JS errors, no obvious errors on the stdout log files
Thoughts?
Field is defined like the one below
The text was updated successfully, but these errors were encountered: