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
Code:
This should actually be:
Code:
Read more
Continue reading...
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...