Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
519
ultra Combo should show >,< and = operators and user should be able to add value for serach.
posted

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

  • 469350
    Offline posted

    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;
            }