Welcome Guest, Not a member yet? Register   Sign In
Codeigniter + JQuery 1.4.2 + autocomplete
#10

[eluser]Kyle Ellman[/eluser]
If anyone is having trouble using the ajax callback method of the autocomplete, I've found an easier way of using JQuery UI Autocompleter with CI.

Since most of us leave $_GET disabled (default in CI), we have to use another method of passing the search term to the function. Just use a URI segment to do that like this:
Code:
//this could be a function in a "search" controller

function autocomplete()
    {
        echo json_encode($this->search_model->search($this->uri->segment(3)));
    }

And since the source url has to change each time the autocompleter requests that function, add this event to the options:

Code:
$( "#search_box" ).autocomplete({
                source: '<?=base_url()?>searchcontroller/autocomplete',
                search: function(event, ui)
                {
                    $("#search_box").autocomplete("option", "source", '<?=base_url()?>searchcontroller/autocomplete/'+$("#search_box").val());
                }
            });

And as long as the function in the model returns an array of results, you should be good to go.


Messages In This Thread
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 02:17 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 03:16 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 03:42 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 03:46 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 03:50 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-16-2010, 05:41 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 09-17-2010, 04:51 PM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 10-17-2010, 02:06 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 11-08-2010, 03:32 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 11-22-2010, 04:39 PM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 12-07-2010, 09:56 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 12-07-2010, 10:38 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 12-08-2010, 12:48 AM
Codeigniter + JQuery 1.4.2 + autocomplete - by El Forum - 12-08-2010, 02:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB