You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 16, 2018. It is now read-only.
Hi,
when using the plugin with default ajax handlers, the request might not go through (actually, not call the plugin's success function.) The cause was when I called something like this elsewhere in the scripts:
The "datatype" parameter is used within the rest of the class, but there's no default value for it. Adding this line will fix the problem with issue above.
The text was updated successfully, but these errors were encountered:
Hi,
when using the plugin with default ajax handlers, the request might not go through (actually, not call the plugin's success function.) The cause was when I called something like this elsewhere in the scripts:
Then, none of the requests would call the succes handler of autocomplete, therefore, not displaying the results.
Fix is on line 23, modify the default options class:
-> simply set the datatype.
The "datatype" parameter is used within the rest of the class, but there's no default value for it. Adding this line will fix the problem with issue above.
The text was updated successfully, but these errors were encountered: