I have an ultracomboeditor, when the user enter 1st character the list should display , when the user enters 2nd character the list with 1st+ 2nd charcter should display
for e.g. if "bu" is entered, all the items starting with bu should appear
this.ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;
or
this.ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
I have set the ultracomboeditor as follows:
this.cmbPipeline.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;this.cmbPipeline.SortStyle = Infragistics.Win.ValueListSortStyle.AscendingByValue;this.cmbPipeline.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
But when i enter "b" the dropdown shows the items starting with b and when i try to enter "bu" it shows the items starting with "u" and not with "bu"
please suggest
Thank you very much Mike..
Hi Mike,
Sorting is required for ultracombo?.. there is no property for this... but ultracomboeditor has 'SortStlye'....
Hello,
I am not sure what is your question exactly. I created a sample for you where you can sort the columns in the WinCombo control. Please take a look and let me know if it works fine for you or if you feel that I misunderstood you.
Hi Borris,
I am not able to open the solution which you have just sent me as it is created using the newer version.
Let me make my question clear.
1.Ultracomboeditor
2.Ultracombo
there is an option for sorting the first tool(i.e., Sort style), but there is no option for the second.
Can you advise?
Could you please let me know of the exact version in which you would like the solution, it provides sorting functionality for the combo.
Thank you Mike...
Hi Preeth,
I don't think there is any control that will do this natively. The UltraNumericEditor is close, but I don't think there is any mask character that will permit you to enter a digit, and % sign or a * sign in the same place.
So I think your best bet would be to use UltraTextEditor and handle the KeyDown event to validate the key entries made by the user.
Reqmt: We need only numerical value to be entered with * or %.
I have used a ultratexteditor in my app. It should accept only integers and these two symbols '*' , '%'. We have restricted the editor to throw error while alphabets are entered. Now, apart from the mentioned two symbols, if any other symbol is entered into it editor should trow error.
Can you suggest?
Or
Is there any other control where we can restrict only to integers and those two symbols. We tried with ultranumeiceditor and ultramaskededit. Not comfortable for our app as these symbols(wild car search) cannot be included with the integers.
Kindly advise..
thanks
Preeth
i have a date column in the grid with calendar fitted for filter. But when filtered using a date from the calendar, it is not filtering.
Kindly tell me the property to make the filter option using calendar to work.
Thanks
I am sorry. Not able to completely explain.