When editing a page content, I have the correct window with the editor.
When I click save I have the json response from drupal, not the page updated.
The url is :
/edit/form/node/1693/body/und/full

If I just edit the title of the page, the in place editing works fine.

cke editor used.

Comments

goudal’s picture

Of course just after posting the problem I have found that it seems that the problem is due to the mix with bootstrap theme from drupal. Trying the same configuration with bartik works fine : the « record » button is displayed in the tool bar.. So I don't know if it's a bootstrap bug or an edit bug

goudal’s picture

Status: Active » Closed (works as designed)

Ok... I was tnear totally wrong....

iaminawe’s picture

Please let me know how you resolved this, I am experiencing the same thing. Thanks.

illmatix’s picture

I had a similar issue with my image field not rendering out correctly after the newly added image is submitted. I found out that the form from the upload form is what is being posted back to you so your display field formatter doesn't know how to handle this. The array it provides is just the fid, and some other form values rather than the field array from the node where it has uri key along with a bunch of other details of the file.

My solution here was just to support the alternate format and use file_load() on the fid to load it up and conditionally use the alternate format.