vote up 1 vote down star

There are many flavours to the AutoComplete implementation, I first did a WPF implementation that was very robust, each entry took keywords, so when searching for an employee, it didn't matter if you typed the first or last name, the results came back similar to Google Suggest.

What I have found limiting in both the JQquery autocomplete and the ASP.Net Autocomplete extender is that there is no keyword search, or contains functionality, it simply uses a "Startswith" type search.

For example, in order to Search for "Mark Adams" as a staff name, you have to type in M,a,r, etc. If you typed in A,d, etc, no result would return.

Does anyone know of plans for this? Is there anything out there right now?

flag

Check the edit for Ajax ToolKit. – harshh Jul 17 at 6:50

1 Answer

vote up 2 vote down check

You must have missed jquery autocomplete option like

matchContains:true

It does exactly what you want. It would match for Mark Adams, when you type A,d etc.

Edit

And for ajaxtoolkit AutoCompleteExtender, i fear you don't get any option equivalent of matchContains in jquery. But you can do it easily in service method. Set it as...

ServiceMethod="GetNameList"

where GetNameList contains the whole logic of how to match the data. E.g.

public partial class _Default : System.Web.UI.Page {
    [WebMethod]
    public static string[] GetNameList(string prefixText, int count) {
        string sql = String.Format("select name from customers where name like @given_name");

        List<string> nameList = new List<string>();
        using (SqlConnection connection = new SqlConnection("Integrated Security=SSPI;Initial Catalog=Northwind;Data Source=."))
        using (SqlCommand command = new SqlCommand(sql, connection)) {
            connection.Open();
            command.Parameters.AddWithValue("@given_name", "%"+prefixText"%");
            using (SqlDataReader reader = command.ExecuteReader()) {
                while (reader.Read()) {
                    nameList.Add(reader.GetString(0));
                }
            }
        }

        return nameList.ToArray();
    }
}

The below is the code line, which does the matching.

command.Parameters.AddWithValue("@given_name", "%"+prefixText"%");
link|flag
Thanks harshh, is there something equivalent for ajaxtoolkit AutoCompleteExtender? – Mark Kadlec Jul 16 at 20:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.