Comments

ironbuilt’s picture

Also, just noticed the record shows an update in the "Author" column but the field has not been changed.

charlie-s’s picture

There are some issue with getting 7.x- to work via Views. It seems to work fine within a normal node view. (view as in node/123 not view as in Views module).

Out of curiosity, is your View set to display as a table?

mwsam’s picture

If you look into the title.module file, it implements hook_entity_presave() in title_entity_presave() function that always set back the title field value from the replaced legacy title. So the change has been lost whenever editablefields module try to save the node.

If you replace title_entity_sync($type, $entity, NULL, TRUE) inside the function with title_entity_sync($type, $entity, NULL, FALSE) then the updated title will be saved correctly. Though this is certainly not the fix desired.

patoshi’s picture

same issue as its not saving in the views

johnv’s picture

Title: Does not save changes » Does not save changes in Node title

so, this happens only for Title field? Other fields are OK? => Better Issue title

johnv’s picture

Title: Does not save changes in Node title » Title field does not save changes
johnv’s picture

@ironbuilt, how do you make the Title editable?

I've tested this as follows:
-enable Editablefields, apply patches
#1405854: Multiple fields not saved
#1206656: Error on Node view page: Argument 1 passed to drupal_array_get_nested_value()
- enable Title module (+ Entity module)
- create a view
- add 'Content: Title (Title)' field --> There is no formatter to choose. :-(

- goto 'maintain fields of Content type; use Operation 'replace' to replace the Title with a Title field
- wait a while for the replacement to complete...
- add 'Content: Title (Title)' field --> There are still no formatters...

See also this issue in the Title module: #1062814: Formatters

divined’s picture

Still not save title field!

bserem’s picture

Issue summary: View changes

is there an update on this? Has anybody achieved anything?

I am not getting any results either, I do not know if it is because of the translation (entity titles via the title module) or some other reason though

ledom’s picture

Use of Autonodetitle (dev version only) solve the issue and you can update title in views
See: https://www.drupal.org/node/1915094

romaingar’s picture