Hi

I am currently extending the functionality of the D7 port of http://drupal.org/project/jeditable for more fields. there is the following line in the theme_jeditable_formatter_jeditable():

return '<span id="' . $entity_type . '-' . $id . '-' . $field['field_name'] . '-' . $widget_type . '-' . $variables['delta'] . '" class="jeditable jeditable-textfield">' . $element['value'] . '</span>';

The fact that the Email Field uses the 'email' instead of the conventional (is this right?) 'value' index makes these two modules incompatible. In which module should this be fixed?

Thanks
Lukas

Comments

johnv’s picture

This should be handled in the email module.
Somewhere you must duplicate $item['email'] to 'value'. Haven't found where, though