Hi,
We are planning to use UltraGrid. Before that I wanted to know whether the below requested feature can be got in UltraGrid.
Feature I want is:
I want an AutoSuggest feature for one of the columns of UltraGrid.
Example:
Assume that my datasource contains the following names: Abc, Abcd, Bangalore, Bengule, Delhi, Dear.
This source will be bound to one of the columns of the grid. Now when user types B on that column it should all the names starting with B in the dropdown as a listview [in the way it shows in UltraDropDown control]. Can we achieve this feature in this UltraGrid? If so how??
Thanks in advance,
Dev
You don't need an editor for this. All you have to do is set the AutoSuggestMode property on the column (assuming the column already has a dropdown list like UltraDropDown attached).
Are there the way to allow 1 column enable auto-complete, and then when user select a result, other properties of that object would auto-fill to other columns.
Please give me the way. Thanks.
Hello,
You could handle AfterCellUpdate event of UltraGrid, in this event you could get the cell which was updated (it is property of the argument - e.Cell) in order to get the new value and then to setting it to the cell which you want. More information about this event you could find on the following link:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v11.1~Infragistics.Win.UltraWinGrid.CellEventArgs.html
Please let me know if you have any further questions.
There is no answer?