We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Autosuggest in GridGrouping control

Hi Team,

While editing a cell in grid grouping control, I want it to be a drop down and only values in drop down will be allowed in that cell. Is this possible in GGC?

Any help is greatly appreciated.

Thanks

Inder

 


1 Reply

VK Vinish Kumar K Syncfusion Team January 29, 2013 05:53 AM UTC

Hi Inder,

 

Thank you for your interest in Syncfusion products.

 

Query

 

Autocomplete in cell edit.

We have analyzed your query. We have an property name ‘AutoCompleteinEditMode’ using this property you can achieve your desired output. Please refer the following code.

 

gridControl1[rowIndex, 1].Text = "AutoComplete ";

            gridControl1[rowIndex, 3].CellType = cellType;

            gridControl1[rowIndex, 3].CellType = GridCellTypeName.ComboBox;

            gridControl1[rowIndex, 3].DropDownStyle = GridDropDownStyle.Editable;

            gridControl1[rowIndex, 3].AutoCompleteInEditMode = GridComboSelectionOptions.AutoComplete;

            gridControl1[rowIndex, 3].ChoiceList = items;

 

 

Please use the codes in your application.

 

Please let me know if you have further concerns.

 

Regards,

Vinish.


Loader.
Live Chat Icon For mobile
Up arrow icon