The data came froma webservice (ASP.NET in XML format)

function GetData_callback(xml, dest) {
    var data = new Array();

    try {
        var i = 0;
        $("anyType", xml).each(function() { data[i] = $(this).text();
i = i + 1; });
    }
    catch (ex) {
        alert(ex);
    }
    finally {
        $("#dest").autocomplete(data, { minChars: 0 });
    }
}

So i need to expand (and the show)  the list of results.
Thank you

On 27 Ott, 17:25, mbraybrook <[EMAIL PROTECTED]> wrote:
> Can you tell us how you currently initialize the list?
>
> Perhaps a link or an extract of code.
>
> It depends on how you populate the list as to how you would show all
> items.
> I can't personally see a built in function of the AutoComplete plugin
> that supoprts this - hence it would likely be that you would populate
> the list yourself manually.
>
> Regards
> Mark
>
> On Oct 27, 3:08 pm, Mello <[EMAIL PROTECTED]> wrote:
>
> > Hi all
> > I've a filed that use the Ui.autocomplete plugin to show the list of
> > possibile values, this list is shown when i start typing but i need to
> > view the full list before start typing.
> > This list is small (max 15 items) so there's no performance issues.
>
> > There's a method to do this?
>
> > Thank you.
>
> > Mello.

Reply via email to