RSS Feed/News Auto-Complete with Auto-Submit Textboxes Don't Send Proper AJAX-Submit

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
26,058
Points
823

Reputation:

If you have an auto-complete textbox with auto-submit, within an ajax-submit form, ajax-submit will not be processed when clicking on an auto-complete entry.

Issue is explained here:
https://xenforo.com/community/threads/usernames-ac-autosubmit-behavior-oddities.223278/

Fix is below: In js\xf\core_handlers.js line 2212:
Code:

Code:
			if (this.options.autosubmit)
			{
				this.target.closest('form').submit()
			}

This should actually be:
Code:

Code:
			if (this.options.autosubmit)
			{...

Read more

Continue reading...
 
Status
Not open for further replies.
Top