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

[eluser]yrachmanu[/eluser]
Hi narren,

I've problem with your script, could you help me ??

Here my script,below ( I've just copied your js script onto ownauto.js & load model with reguler SQL not by active record like your example did ),that's all

But, this script implement there nothing happen with the autocomplete, please help me...

Thanks' for your reply

/**************************************
my controller
***************************************/

class autocomplete extends controller
{
function autocomplete(){
parent::Controller();
}
function segment($name)
{

if (isset($name) && strlen($name) > 2)
{
$this->load->model('regionmodel');
$query=$this->regionmodel->getRegion($name);
foreach($query->result() as $row)
echo $row->descrption."\n";
}
}
}


/***************************************
my View
**************************************/

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
[removed][removed]
[removed][removed]
[removed][removed]
</head>
<body>
<body>
<input type="hidden" name="segment_id" value="" id="segment_id">
<label for="segment">Segment</label>
&lt;input type="text" name="segment" value="" id="segment"&gt;
&lt;/body&gt;

&lt;/body&gt;
&lt;/html&gt;


/**************************
ownauto.js
**************************/
$(document).ready(function() {
$("#segment").autocomplete("/index.php/autocomplete/segment",
{ minChars:3, matchSubset:1, matchContains:1, cacheLength:10,
onItemSelectConfusedelectItem, selectOnly:1, elementID:'segment_id' }
);
});

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


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