AD
Administrator
Syncfusion Team
May 20, 2004 04:25 PM UTC
If you set the DropDownStyle to autocomplete, then with each keystroke, a valid entry from the list will be shown that autocompletes the typed entry up to that point. So, you you type BO, it will show an entry that start with BO, when you add a T, it will show an entry that starts with BOT, and so on.
To dynamically change the list in a dropped combobox in a grid cell will take some work. I suspect you would have to derive a cell control and handle a several problems. In our standard combobox cell, the list is cached for efficiency. This cacheing will work against you trying to dynamically swap out the list. I am not sure how much work this would be. If the autocomplete serves your needs, that is a simple property setting.
KJ
Kenneth Johnson
May 20, 2004 05:28 PM UTC
Thanks again Clay. The DropDownStyle did the trick.
Ken