Autocomplete with multiple values in ASP.NET
-
Hi All, i would like to do (ASP.NET-AJAX with C# )an autocomplete search textbox(like Google search) that give the user to choose more than one value to research in DataGrid as follows : 1 | 2 | 3 Rome,Paris,New York when the user insert the first value can have also the possibilities to insert the second value value and so on ... then the datagrid can show all result requested and preferably i should do it in C# . DO you have any idea how i can do it?? Thanks so much for your attention Cheers :)
-
Hi All, i would like to do (ASP.NET-AJAX with C# )an autocomplete search textbox(like Google search) that give the user to choose more than one value to research in DataGrid as follows : 1 | 2 | 3 Rome,Paris,New York when the user insert the first value can have also the possibilities to insert the second value value and so on ... then the datagrid can show all result requested and preferably i should do it in C# . DO you have any idea how i can do it?? Thanks so much for your attention Cheers :)
You can use this control(Multiselect Dropdown for Web Applications[^]) coupled with AJAX calls to make it as an autocomplete list. Based on the text entered, filter the datasource of the checkboxlist and once the values are selected, use the selected values as a folter for your grid. Try!
Sandeep Mewara [My last tip/trick]: Server side Delimiters in ASP.NET[^]
-
You can use this control(Multiselect Dropdown for Web Applications[^]) coupled with AJAX calls to make it as an autocomplete list. Based on the text entered, filter the datasource of the checkboxlist and once the values are selected, use the selected values as a folter for your grid. Try!
Sandeep Mewara [My last tip/trick]: Server side Delimiters in ASP.NET[^]
Thanks Sandeep, it is a good example but i can not filter the checklist box meantime i am inserting the value in the textbox...anyway i am trying to repair this error if you have any suggestion i will be so gratefel. Thanks a lot. :) Cheers
-
Thanks Sandeep, it is a good example but i can not filter the checklist box meantime i am inserting the value in the textbox...anyway i am trying to repair this error if you have any suggestion i will be so gratefel. Thanks a lot. :) Cheers
What error? You have to further customize what I have shared as per your need.
Sandeep Mewara [My last tip/trick]: Server side Delimiters in ASP.NET[^]
-
What error? You have to further customize what I have shared as per your need.
Sandeep Mewara [My last tip/trick]: Server side Delimiters in ASP.NET[^]
hi, not error in the project on codeproject but in my project that meantime i insert the value in the textbox i want the checkboxlist work likes the Autocomplete but it doesn't that so ai m trying to complete this issue. Thanks so much for your help . :)