Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
ADMIN
Martin
Created on: 18 Mar 2013 12:16
Category: UI for ASP.NET AJAX
Type: Feature Request
2
RadGrid's keyboard navigation doesn't utilize the Home, End, PageUp, PageDown keys when scrolling is enabled.

		
3 comments
ADMIN
Martin
Posted on: 20 May 2013 07:51
Rejected Reason: The reason for the keys not to work is the tabIndex of the RadGrid element which is set to zero which is used for the KeyboardNavigation and if removed will break other functionalities.

However, the desired functionality could be achieved by subscribing to RadGrid OnGridCreated client-side event and removing the tabIndex attribute as shown below.
function GridCreated(sender, args)
{
    sender.get_element().removeAttribute("tabIndex");
}
Nishant
Posted on: 19 May 2013 03:03
Hi Martin,

Not sure why was it rejected without providing any reason !!! In fact, i'd like to submit this as a Bug instead of feedback.

Nishant
Kadir
Posted on: 18 May 2013 14:46
it is not related scroll. This problem start after I set EnablePostBackOnRowClick="true"