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
70
DropDownValidate - change the search mechanism.
posted

the DropDownValidate searches as "Starts With".

I want to search %Like%. Is there anyway i can do this?

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi,

    I'm not absolutely certain I understand what you are asking. DropDownValidate doesn't have any "Search" functionality.

    My best guess is that you are talking about the AutoComplete funtionality which filters the list based on what you type. If that's what you mean then what you can do is set the AutoSuggestFilterMode property on the Column to Contains;

    this.ultraGrid1.DisplayLayout.Bands[0].Column["My Column"].AutoSuggestFilterMode = AutoSuggestFilterMode.Contains;

Children