We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Filter bar navigation

Hi,

I'm having troubles with keyboard navigation on filter bar cell.

Basically the keyboard navigation works a bit funky. If I'm located on the filter bar and wish to move through it using the keyboard it starts skipping columns (and sometimes even rows). Try to navigate to the filter bar from somewhere in the grid using the keyboard, and then try to move left or right, I'm sure you'll see it.


I've attached a file for you to check it out.

Test_Filter0.zip

2 Replies

AD Administrator Syncfusion Team April 10, 2007 12:02 PM UTC

In your TableControlCurrentcellKeyDown code, every time you call cc.MoveTo (there are five places), you should also set e.Inner.Handled = true to prevent the key from being processed later in the library code. For example,

if (e.Inner.KeyData == Keys.Down)
{
cc.MoveTo(cc.RowIndex + 1, cc.ColIndex);
e.Inner.Handled = true;
}


VH Vicko Hazdovac April 11, 2007 08:00 AM UTC

heh...
I was sure I tried that...

Thanks.

Loader.
Live Chat Icon For mobile
Up arrow icon