Event handlers added to the form containing the autocomplete widget do not get called by
jQuery(this).get(0).form.submit();
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | apachesolr_autocomplete_widget_submit-2238565-1.patch | 570 bytes | theapi |
Event handlers added to the form containing the autocomplete widget do not get called by
jQuery(this).get(0).form.submit();
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | apachesolr_autocomplete_widget_submit-2238565-1.patch | 570 bytes | theapi |
Comments
Comment #1
theapi commentedHere's a patch to use
jQuery(this).closest("form").submit();instead, which calls the submit handlers.Comment #3
janusman commentedFixed! Thanks!