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
955
How to let the dropdown grid of ultraCombo is shown when I key in the ultraCombo?
posted

 1、Now if I do not click the button of ultraCombo, the Dropdown grid of ultraCombo can not be shown automatically,How to let the dropdown grid of ultraCombo is shown when I key in the ultraCombo?
2、  When the input value doesn't match the value of ultraCombo, how to make the cursor stay in the ultraCombo?

Parents
  • 69832
    Offline posted

    UltraCombo support automatic value completion via the AutoCompleteMode property (added with 2008.3 release). Setting the property to Suggest causes the dropdown to automatically show the entries whose display text begins with the contents of the edit portion.

    If you just want to show the dropdown when any key is pressed, you could handle the KeyDown event and call the PerformAction method with an action of 'DropDown'.

Reply Children