I am facing issue regarding custom drop down.
// Registering the cell model
this.grid.Model.CellModels.Add("CustomDropDown", new CustomeDropDownCellModel());
// Binding the celltype
var dropdown1 = this.grid.Model[7, 2];
dropdown1.CellType = "CustomDropDown";
dropdown1.ItemsSource = GenerateListBoxContent();
dropdown1.DisplayMember = "Text";
dropdown1.DropDownStyle = GridDropDownStyle.AutoComplete;
On changing or selecting the excel cell , by default selects the text in the cell.
I do not want cell text to be selected first time when cell is clicked or dropdown in changed.
Note : I need Autocomplete feature to working.
and also I noticed if dropdown1.CellType = "ComboBox" above issue is not observed,
Its present only with CustomdropDown.
Any help is appreciated,
Please find the image attached for issue;