Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
245
AutoCompleteMode=Suggest on WinGrid
posted

I'm using Infragistics 10.3.  I have an UltraWinGrid with a column for customer code.  I have attached an UltraDropDown to the ValueList property of that column. 

The UltraDropDown's data source is a DataTable with two columns -- one for customer code, and one for customer name.  I've set the ValueMember to the customer code, and the DisplayMember to the customer name.

This all seems to work fine -- I can click the drop down in the customer code column on the grid and see the list of customers.

But I would like for the user, when adding a new row, to be able to start typing the customer name, and get a list of autocomplete suggestions.  I've tried setting the AutoCompleteMode property of the column on the grid to AutoCompleteMode.Suggest, but it doesn't seem to do anything, and I'm not sure why.  Are there other properties that need to be set for the autocomplete to kick in?

Thanks for any help,

Mike

Parents
  • 245
    Suggested Answer
    Offline posted

    I think I found the answer here: http://ko.infragistics.com/community/forums/t/70133.aspx

    UltraDropDown does not work with Suggest.  I switched to using an UltraCombo and it looks like it's working now.  I was misled by the same article mentioned in the above post (http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=7841), and thought I needed to use the UltraDropDown.

    I do have another AutoSuggest related question though -- as I type into the column, I can see the dropdown list of suggestions -- but it would be nice if I was able to move through the suggested list, maybe by hitting tab, down arrow, etc.  But it seems that hitting any of those keys just moves me to the next column in the AddRow.  Is there a way to cycle through the list of suggestions using the keyboard?

Reply Children
No Data