jquery otomatik tamamlama: Bir sonraki için etkinleştirmek için nasıl ilk değer işleri,?

0 Cevap php

Ben bu gibi, çok kullanıcı tefriş girdilere verileri girebilirsiniz otomatik tamamlama kullanıyorum:

 <?
$a = new etiqueta(0, '');
$b = $a->autocomplete_etiquetas();
?>
<script type="text/javascript">
    function cargar_autocomplete_etiquetas(){
        $("#tags").autocomplete({
            source: [<? echo $b; ?>]
        });
    }
</script>

Gibi bir sonuç ile $ a = $b onun bir array: için 'yardım', 'lütfen', i ',' ihtiyaç ',', 'seçmek' mümkün ' otomatik tamamlama 'ile sonraki öğe', ';

and i checked the ui documentation, but it doesn't fith with my source method.. any idea? I'm trying like this (edited with Bugai13 aportation):

 <?
$a = new etiqueta(0, '');
$b = $a->autocomplete_etiquetas();
?>
<script type="text/javascript">
    function cargar_autocomplete_etiquetas(){
    $("#tags").autocomplete({
        source: [<? echo $b; ?>],
        multiple: true,
        multipleSeparator: ", ",
        matchContains: true
    });
}

</script>

ama bunu nasıl bilmiyorum .. herhangi bir fikir? . itin ve edilmektedir. pop fonksiyonlarını otomatik tamamlama mi? ya da ben onları tayin eder?

tekrar teşekkürler!

PS: i'm getting adicted to this site! PS: come on dudes, i think the answer will be very usefull for many people PS: is it allowed to offer paypal reward?

0 Cevap