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"); }
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
it is not related scroll. This problem start after I set EnablePostBackOnRowClick="true"