Hi, Am looking for some intellisense filtering of the valuelist items of the DataGridColumn.
I have assigned, a ValueList to the column and put its style as DropDownValidate and CellClickAction as EditAndSelectText
datagrid1.DisplayLayout.Bands[ 0 ].Columns[ "Status" ].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownValidate;
datagrid1.DisplayLayout.Bands[ 0 ].Columns[ "Status" ].CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
The valuelist is made and assigned to the column.
So am looking for some feature where in i type some characters in the above column's cell and it shud show me a dropdown of valuelist items filtering with the text entered ( and possibly autofilled with the first element from the filtered valuelist items). As of now am unable to show the dropdown list when the user is in edit mode as well filtering the valuelist items with the text entered.
Is there any way of doing so ?
Thanks.
What version of the controls do you have? If you are using the latest (v8.2), then a new feature was just added to the grid and all you have to do is set AutoCompleteMode on the column.