Welcome Guest, Not a member yet? Register   Sign In
jQuery AJAX autocomplete with CodeIgniter
#34

[eluser]mikeyhell[/eluser]
Thanks for the contribution but I'm getting the following error with your code.

syntax error
active =
http://server/assets/js/autocomplete/jqu...omplete.js
Line 557

Code:
[removed][removed]
[removed][removed]
[removed][removed]

<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/js/autocomplete/jquery.autocomplete.css" />
[removed]
$(function() {
    $("#client_name").autocomplete("/edit_customer/search",{
         minChars:3,
         matchSubset:1,
         matchContains:1,
         cacheLength:10,
         onItemSelect:selectItem, selectOnly:1, elementID:'cust_id',
    });
});

function selectItem(li, elementID) {
    $("#"+elementID).val(0);
    var setVal = (li.extra) ? li.extra[0] : 0;
    $("#"+elementID).val(setVal);
}
[removed]

And my controller:
Code:
function search($search)
    {
        $this->db->like('last_name', $search);
        $result = $this->db->get('customers');
        
        if ( $result->num_rows() > 0 ):
            foreach ($result->result() as $c ):
                echo "$c->first_name $c->last_name|$c->id\n";
            endforeach;
        else:
            echo 'No Results Found|0';
        endif;
    }


Messages In This Thread
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-04-2009, 04:38 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-07-2009, 02:05 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-07-2009, 03:48 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-07-2009, 11:33 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-08-2009, 03:00 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-08-2009, 08:45 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-09-2009, 02:53 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-27-2009, 11:34 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-29-2009, 04:56 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 04-30-2009, 12:59 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-02-2009, 10:08 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-02-2009, 11:31 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-03-2009, 09:01 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-03-2009, 09:23 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-03-2009, 09:34 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-04-2009, 03:25 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-06-2009, 03:23 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-12-2009, 10:39 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-12-2009, 10:40 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-12-2009, 10:48 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-12-2009, 10:54 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-13-2009, 01:12 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-13-2009, 01:42 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-13-2009, 03:07 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-20-2009, 10:21 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-21-2009, 12:22 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-25-2009, 06:57 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-25-2009, 10:43 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-26-2009, 05:43 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-27-2009, 12:56 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 05-30-2009, 10:50 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-07-2009, 02:48 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-07-2009, 09:13 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-15-2009, 12:01 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-15-2009, 12:22 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-15-2009, 12:34 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 06-15-2009, 01:17 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 10-12-2009, 12:52 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 10-19-2009, 06:43 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 11-11-2009, 04:52 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 11-12-2009, 12:08 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 12-25-2009, 07:44 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 01-06-2010, 10:51 AM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 01-16-2010, 10:50 PM
jQuery AJAX autocomplete with CodeIgniter - by El Forum - 08-11-2011, 12:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB