- Issue created by @brejchova
- 🇫🇷France lazzyvn paris
Can you take some screenshots of your config? I can't figure out your problem. I guess you didn't configure the bundle in the second save. In the widget, you didn't select the right widget. Try dev, it might fix it.
Thank you for your quick response. This is my field configuration, I did select the bundle on the second save.
uuid: ada114da-01da-4a8c-8d34-45c76c384fb7 langcode: en status: true dependencies: config: - field.storage.taxonomy_term.field_bibliography - taxonomy.vocabulary.work module: - datafield id: taxonomy_term.work.field_bibliography field_name: field_bibliography entity_type: taxonomy_term bundle: work label: Bibliography description: '' required: false translatable: false default_value: { } default_value_callback: '' settings: field_settings: reference: label: Reference required: false entity_reference_type: node target_bundles: bibliographic_citation note: label: Note list: false allowed_values: '' required: false field_type: data_field
I kept the default form configuration for the field, it is set to autocomplete.
field_bibliography: type: data_field_table_widget weight: 3 region: content settings: inline: false field_reference: '' widget_settings: { } third_party_settings: { }
Thank you for responding. The field configuration file (I did select the bundle on second save):
uuid: ada114da-01da-4a8c-8d34-45c76c384fb7 langcode: en status: true dependencies: config: - field.storage.taxonomy_term.field_bibliography - taxonomy.vocabulary.work module: - datafield id: taxonomy_term.work.field_bibliography field_name: field_bibliography entity_type: taxonomy_term bundle: work label: Bibliography description: '' required: false translatable: false default_value: { } default_value_callback: '' settings: field_settings: reference: label: Reference required: false entity_reference_type: node target_bundles: bibliographic_citation note: label: Note list: false allowed_values: '' required: false field_type: data_field
I kept the default configuration of the form (autocomplete):
field_bibliography: type: data_field_table_widget weight: 3 region: content settings: inline: false field_reference: '' widget_settings: { } third_party_settings: { }
I did have the bundle selected and I have the default autocomplete widget selected.
The problem seems to be caused by getFormElement(). The value of $element["#default_value"] was a numeric string containing the entity id. Therefore the string condition was applied but the regex did not match anything because the entity id was not in brackets. The code then tried searching for any node matching the query and since my titles contain numbers, it often selected the wrong reference.
To fix the issue, it was enough to replace if for elseif on line 84 of https://git.drupalcode.org/project/datafield/-/blob/2.0.5/src/Plugin/DataField/FieldWidget/EntityReferenceAutocompleteWidget.php This way the is_numeric condition correctly identifies the entity id.
- 🇫🇷France lazzyvn paris
it means line 84
if (empty($entity_id) && is_string($element["#default_value"])) { ...
Could you check it?
- Status changed to Fixed
8 months ago 1:53pm 31 July 2024 Automatically closed - issue fixed for 2 weeks with no activity.