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
60
ultragrid not reacting to KeyPress/KeyDown event
posted

L.S.

I have an ultragrid which, by a user action, is bound to a particular bindingsource. Everything works fine. However, I have to click on a row (CellClickEvent = RowSelect) in order to make the KeyPress/KeyDown event work, and that's not desirable.

I have tried the following, without success:

- UltraGrid:Select().

- UltraGrid:Focus().

- UltraGrid:DataBind().

- UltraGrid:PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction:ActivateCell).

- UltraGrid:ActiveRow = StatusBarGrid:Rows:Item[0]. followed by UltraGrid:Selected:Rows:Add(UltraGrid:ActiveRow).

TIA.

Will