Skip to content

autocomplete>option>source>string entry confusion #58

Closed
@timbotron

Description

@timbotron

Currently:

The Autocomplete plugin does not filter the results, instead the request parameter term gets added to the URL, which the server-side script should use for filtering the results.

I was expecting this behavior:

source: "http://myurl.com/json/";

After term is added:

source: "http://myurl.com/json/term";

But what actually happens is:

source: "http://myurl.com/json/?term=term";

There wasn't any indication it would definitely be adding it in the URI as a PHP GET request. I use clean URI's and initially it seemed to work perfectly for that. Had to troubleshoot, and didn't realize this was the problem for a little while.

Maybe change it to:

The Autocomplete plugin does not filter the results, instead the request parameter term gets added to the URL (as '?term=term'), which the server-side script should use for filtering the results.

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions