Welcome Guest, Not a member yet? Register   Sign In
[ASK] Integrating CI and Jquery autocomplete plugin
#9

[eluser]GrootBaas[/eluser]
Guys,

Thank you so much for your help. You really make a difference in somebody's live with the fast and educated replies. Thank you all again.

For the next person who comes across this problem ...

Inside jquery.autocomplete.js

Change
Code:
$.ajax({mode: "abort",
    port: "autocomplete" + input.name,
    dataType: options.dataType,
    url: options.url,
    data: $.extend({
    q: lastWord(term),
    limit: options.max
    }, extraParams),
    success: function(data) {
    var parsed = options.parse && options.parse(data) || parse(data);
               cache.add(term, parsed);
             success(term, parsed);
                }
});

to this ...

Code:
$.ajax({type: "post",
        mode: "abort",
    port: "autocomplete" + input.name,
    dataType: options.dataType,
    url: options.url,
    data: $.extend({
    q: lastWord(term),
    limit: options.max
    }, extraParams),
    success: function(data) {
    var parsed = options.parse && options.parse(data) || parse(data);
               cache.add(term, parsed);
             success(term, parsed);
                }
});

Then in your controller, change ....

Code:
$q = strtolower($_GET["q"]);
to
Code:
$q = strtolower($_POST["q"]);


Messages In This Thread
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 08-18-2008, 05:28 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 08-19-2008, 02:28 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 08-19-2008, 05:48 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-07-2008, 07:46 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-07-2008, 10:31 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-07-2008, 10:51 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-09-2008, 10:26 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-10-2008, 01:08 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 09-10-2008, 05:17 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 06-14-2009, 04:42 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 06-14-2009, 08:24 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 06-14-2009, 09:51 PM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 06-15-2009, 06:26 AM
[ASK] Integrating CI and Jquery autocomplete plugin - by El Forum - 06-15-2009, 10:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB