- ๐ณ๐ฟNew Zealand quietone
The information needed to work on this has not been provided, as explained in #20. It now time to close this issue.
If you are experiencing this problem on a supported version of Drupal reopen the issue, by setting the status to 'Active', and provide complete steps to reproduce the issue โ (starting from "Install Drupal core").
- Assigned to kksandr
- Status changed to Active
4 months ago 3:02pm 5 August 2024 - Merge request !9084Issue #2831667 by kksandr: trigger 'formUpdated' event on autocomplete selection โ (Open) created by Unnamed author
- Issue was unassigned.
- Status changed to Needs work
4 months ago 3:10pm 5 August 2024 - ๐ฎ๐ณIndia arunkumark Coimbatore
The issue was able to replicate on the Drupal 11.x version. I tried to reroll the patches #14 and #17. The reroll is not resolve the issue.
I tried the below options but still no luck,
1. Triggering autocomplete element on
selectHandler()
$(event.target).closest('form').trigger('formUpdated');
2. Triggering parent form on
selectHandler()
$(event.target).closest('form').trigger('formUpdated');
3. Bind event on
Drupal.behaviors.autocomplete
attach$autocomplete.on('focusout', () => { $(context).trigger('formUpdated'); });
Non of the above method helped.