Dear Infragistics,
Can you please help me..
I have a one scenario. I need to autocomplete mode in ultragridcell.. for example, when i enter a product code list all the product code in ultragrid cell.. can any one give a solution.
Hi Jayamanickam Dharmar
The property you have to set is the AutoSuggestMode one on the column level.
As written in our documentation, the SuggestAppend setting essentially combines the functionality extended by the 'Append' and 'Suggest' settings. The dropdown list is automatically displayed and filtered as needed, and text is appended to the edit portion to complete the typed text to match the first item with matching text. More information is located at http://help.infragistics.com/Help/Doc/WinForms/2011.2/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v11.2~Infragistics.Win.UltraWinGrid.UltraGridColumn~AutoCompleteMode.html
Let me know if you have any additional questions.
Thanks for your valuable reply,
Can you please tell me a example code
Hi Jayamanickam Dharmar,
Based on your screenshot, I understand that you need standalone drop down control with autocomplete mode. The one you are looking for is UltraComboEditor. It has ValueList property as data source and AutoCompleteMode property to change the behavior when the user types in the text field. For further reference, see the attached sample.
hi Ivaylo Petrov
Ya Iam understand but i need a list in ultragrid textbox instead of combobox.. Is anything possible in ultragrid view......
Yes, it is possible and I already showed you how to place drop down list in UltraGrid cell and standalone as well. Could you be more specific about what kind of list you would like to implement? Why the value list approach within UltraGrid cell does not match your requirement? Have you looked at our blog post about best practices for placing drop down list in UltraGrid cell?
Ok thanks... it working....
I have another query???
here i attached a one Screenshot.. i need to show sum of all product in a textbox control no need to show in grand summery..
You can hide all summaries via setting
ultraGrid1.DisplayLayout.Override.SummaryDisplayArea = SummaryDisplayAreas.None;
Let me know if you need further assistance regarding this matter.