помогите please

how to set preferences autocompleter made no inquiry after the first,
which has already downloaded all the possible values?

какие указать настройки чтобы autocompleter не делал запрос после
первого, который уже загрузил все возможные варианты?

        jQuery("#mobile").autocomplete(
                "/autocomplete.php",{
                minChars: 2,
                matchContains: true,
                extraParams:{c:'mobile'},
                autoFill: false,
                formatItem: function(row, i, max) {
                        return i + "/" + max + ": \"" + row.name + "\" [" + 
row.to + "]";
                },
                formatMatch: function(row, i, max) {
                        alert();
                        return row.name + " " + row.to;
                },
                formatResult: function(row) {
                        return row.to;
                },
        });


PS: sory my english((

Reply via email to