I'm building a search function that changes the search values/list items in I'm webdropdown #1 whenever the user changes the search category in webdropdown #2.
I'm have autocomplete enabled in webdrowdown #1 and I'm dynamically populating webdropdown #1 through the onselectionchanged event of another webdrowdown #2. However, only the first 100 items appear in webdrowdown #1 but when I type in a few characters in webdropdown#1 the autofilter does not function at all even though a few items are listed. The items dataset has about 3k rows. Any help is appreciated.
protected void WtxSearchCriteria_OnSelectedChanged(object sender, EventArgs e)
{
string findOption;
findOption = WtxSearchCriteria.SelectedValue.ToString();
........
switch (findOption)
case "ValueR": // searching by value R
}}}
Hello Lionel,Please let me know what are the results of your tests.
Thanks for the help! I'll try it out and let you know how it goes.
-Lionel.
Hello Lionel,Please take a look at the attached from me sample. It is based on the code snippet you provided. The only change I have made is that now filtering is on client. If you set it on the server you will have to every time you press letter or delete one to go to the server via postback and filter the WDD. There is no need of this – you can use client filtering which will be applied to the whole datasource to which the WDD is bound at the moment. Sample uses one function for creating table and is bound to a different text value depending on what has been selected in the first WDD.
I’m looking forward to hear from you.
Hi,
I'm using the latest version of the infra .Net controls. 11.x I believe. It's the same results on chrome and i.e.
Thanks,
Lionel.
Hello Lionel,Just checking your progress with the issue - is it still persisting or you managed to resolve it?