2017-02-21 14 views
1

У меня есть проблема с автозаполнения в Codeigninter и Jquery У меня есть контроллеравтозаполнения Несколько значений в Codeigniter

<?php 
public function search() { 
    $user = $_GET['term']; 
    $query = $this 
      ->db 
      ->select('nama_kota') 
      ->like('nama_kota', $user) 
      ->get('kota'); 
    if ($query->num_rows() > 0) { 
     foreach ($query->result_array() as $row) { 
      $row_set[] = htmlentities(stripslashes($row['nama_kota'])); 
     } 
     echo json_encode($row_set); 
    } 
} 
?> 

У меня есть мнение

<script> 
    $(function() { 
     var availableTags = "<?php echo base_url('admin/kota/search'); ?>"; 
     $("#user-input").autocomplete({ 
      source: availableTags 
     }); 
    }); 
</script> 
<input id="user-input" type="text" name="nama_kota" placeholder="Search User" autocomplete="on"> 

все его хорошо но я стараюсь несколько значения

<script> 
    $(function() { 
     var availableTags = "<?php echo base_url('admin/kota/search'); ?>"; 
     function split(val) { 
      return val.split(/,\s*/); 
     } 
     function extractLast(term) { 
      return split(term).pop(); 
     } 
     $("#user-input").autocomplete({ 
      minLength: 0, 
      source: function (request, response) { 
       // delegate back to autocomplete, but extract the last term 
       response($.ui.autocomplete.filter(
         availableTags, extractLast(request.term))); 
      }, 
      focus: function() { 
       // prevent value inserted on focus 
       return false; 
      }, 
      select: function (event, ui) { 
       var terms = split(this.value); 
       // remove the current input 
       terms.pop(); 
       // add the selected item 
       terms.push(ui.item.value); 
       // add placeholder to get the comma-and-space at the end 
       terms.push(""); 
       this.value = terms.join(", "); 
       return false; 
      } 
     }); 
    }); 
</script> 
<input id="user-input" type="text" name="nama_kota" placeholder="Search User" autocomplete="on"> 

нет работы и помощи ableTags только для чтения не Адресная URL-адрес никакой функции в контроллере Что не так, ребята, пожалуйста, помогите мне, спасибо

+0

Добавить код не изображение !! –

+0

Какой образец вы хотите? –

+0

попытаться выполнить echo $ user = $ _GET ['term']; контроллер – Shibon

ответ

0

, какой тип от выхода вам нужно, если вам нужно, как этот

например. имя, адрес, blood_group.

с выходом автозаполнение вызова

+0

я хочу отображения nama_kota из Kota таблицы –

+0

только имя или другие поля –

+0

я хочу, чтобы отобразить запись в поле nama_kota из таблицы Kota –

0

Извините за поздний ответ я очень очень занят в моей работе это JS вызов контролера

<script> 

    jQuery("#h_student_name").autocomplete({ 
     minLength: 0, 
     source: "DropdownController/hostel_students/" + $("#h_student_name").val(), 
     autoFocus: true, 
     scroll: true, 
     dataType: 'jsonp', 
     select: function (event, ui) { 
      jQuery("#h_student_name").val(ui.item.contactPerson); 
      jQuery("#h_student_id").val(ui.item.code); 
     } 
    }).focus(function() { 
     jQuery(this).autocomplete("search", ""); 
    }); 
</script> 

и это контроллер для вызова

<?php 
//Hostel Student Auto compelete 
public function hostel_students(){ 


    $term = trim(strip_tags($this->input->get('term'))); 
    if($term == ''){ 
     $like = $term; 
     $result_set = $this->DropdownModel->hostel_students(array('hostel_status_id' => 1)); 
     $labels = array(); 
     foreach ($result_set as $row_set) { 
      $labels[] = array(
       'label' => $row_set->student_name.' S/D '.$row_set->father_name.' ,Form# '.$row_set->form_no.' ', 
       'code' => $row_set->hostel_id, 
       'value' => $row_set->student_name, 
      ); 
     } 
     $matches = array(); 
     foreach($labels as $label){ 
      $label['value'] = $label['value']; 
      $label['code'] = $label['code']; 
      $label['label'] = $label['label']; 

      $matches[] = $label; 
     } 
     $matches = array_slice($matches, 0, 10); 
     echo json_encode($matches); 
    } else if($term != ''){ 
     $like = $term; 
     $result_set = $this->DropdownModel->hostel_students(array('hostel_status_id' => 1), $like); 
     $labels = array(); 
     foreach ($result_set as $row_set) { 
      $labels[] = array(
       'label' => $row_set->student_name.' S/D '.$row_set->father_name.' ,Form# '.$row_set->form_no.' ', 
       'code' => $row_set->hostel_id, 
       'value' => $row_set->student_name, 
      ); 
     } 
     $matches = array(); 
     foreach($labels as $label){ 
      $label['value'] = $label['value']; 
      $label['code'] = $label['code']; 
      $label['label'] = $label['label']; 

      $matches[] = $label; 
     } 
     $matches = array_slice($matches, 0, 10); 
     echo json_encode($matches); 
    } 
} 
?> 

и это модель для звонка

<?php 
// Hostel student autocomplete  
public function hostel_students($where, $like = NULL){ 
    if($like): 
     $this->db->like('student_name', $like); 
     $this->db->or_like('form_no', $like); 
     $this->db->or_like('college_no', $like); 
    endif; 
     $this->db->join('student_record', 'student_record.student_id=hostel_student_record.student_id'); 
     return $this->db->where($where)->get('hostel_student_record')->result(); 
    } 
} 
?> 

есть какие-либо вопросы прокомментировать меня я буду сегодня сегодня