seçildiğinde başka bir alana öğeyi geçmek için jquery otomatik tamamlama alıyorum

0 Cevap php

Ben birkaç saat için bu üzerinde çalışıyoruz ve çalışması gerekir ama ben bir şey eksik!

basically, i'm using jquery autocomplete with json source, with 2 values id and description. Description should show up in suggestions and if item is selected and ID passed to a hidden field ( the field is not hidden currently for testing purposes)

İşte benim kod:

$(function() {
  $("#CurrentProv").autocomplete({
   source: "inc/provider_term.php",
   minLength: 3,
    formatItem: function(data, i, n, value) {   
        return  value.split("|")[1];
          } 
    });
      $("#CurrentProv").result(function(event, data, formatted) {
      if (data)
            $("input#fid").val(data[0]);
      });
});

/ / PHP geçerli json çıktı

$term = $_GET['term'];

$sql = "SELECT * FROM db.table WHERE PName LIKE '%$term%'";
$res = mysql_query($sql, $conn) or die(mysql_error());

while ($row = mysql_fetch_array($res)) {

$searchArray['value'] = $row['PID'].'|'.$row['PName'];
$search[] = $searchArray;

}

echo json_encode($search);

Ben araştırdım ve çeşitli varyasyonlarını yapılan ve hala çalışmıyor ettik! Beynim kapatılıyor!!!

0 Cevap