Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1083307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:25:05+00:00 2026-05-16T22:25:05+00:00

I’m setting up jQuery UI autocomplete on a CakePHP site, and feel like I’m

  • 0

I’m setting up jQuery UI autocomplete on a CakePHP site, and feel like I’m missing something really obvious, but it’s almost working…

So the simple jQuery code is:

$(function() {
    $("#SearchQuery").autocomplete({
        source: "<?= $session->base ?>/search/complete",
        minLength: 2
    });
});

This connects to my search controller, and the search controller returns items from the database. I can get the results back if I don’t try to actually look at the “term” (what has been typed. So, in my controller this works:

function complete(){
    $entries = $this->Entry->find('list');
    $this->set('entries', $entries);
}

It is returned as JSON, and drops down from the input like it should. But it never narrows the results based on what has been typed. I would think that this should narrow the results:

function complete($query = null){
    $entries = $this->Entry->find('list', 
        array('conditions' => array('title LIKE' => '%'.$query.'%')));
    $this->set('entries', $entries);
}

But with this code nothing is ever returned. What am I doing wrong?

P.S. People who find this question and are having trouble getting the results back to the autocomplete function, be sure you’re returning properly formatted JSON results: http://www.pagebakers.nl/2007/06/05/using-json-in-cakephp-12/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T22:25:06+00:00Added an answer on May 16, 2026 at 10:25 pm

    The answer is pretty simple, as expected… “term” is passed as $_GET['term'], so it’s not available from the controller function’s variables. (Why I thought it would be passed as a URL segment I have no idea…)

    This works:

    function complete(){
        $query = $_GET['term'];
    
        $entries = $this->Entry->find('list', 
            array('conditions' => array('title LIKE' => '%'.$query.'%')));
        $this->set('entries', $entries);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a jquery bug and I've been looking for hours now, I can't
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.