Hi ,
I have a requirement where in I should be able to apply a fliter on Quantity field like
· Less Than / Equal To / Greater Than <Value>
So after selecting the operator from combo user should be able to add value.
Is there any way we can implement this with one combo box editor instead of asking user to enter value in a text box .
Thanks,
Ashish
Hi Ashish,If you want the users to be able to filter the list, then the easiest thing to do is simply turn on Row Filtering.
private void ultraCombo1_InitializeLayout(object sender, InitializeLayoutEventArgs e) { e.Layout.Override.AllowRowFiltering = DefaultableBoolean.True; }