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
300
Immediately open dropdown window
posted

on a column which use UltraDropDown, how to immediately open Ultradropdown window when i press a key

thanks 

  • 469350
    Verified Answer
    Offline posted

    To simulate a user action, like dropping down a list, you use the grid's PerformAction method. So you will probably want to trap the KeyPress event of the grid, check the ActiveCell.Column.Key to see if it's a dropdown column, and if so, call PerformAction to drop down the list.

    I beleive the dropdown already responds to F4, actually. And maybe Alt+Down Arrow.