For some strange reason, the keydown event is not raised when pressing the tab key in an UltraWebGrid. I want to change the default action which changes the selected row to the next (tab) or the previous (shift-tab).
Is this a bug or intended behaviour?
Paul
This is weird, I have just tried to reproduce this problem with the following setup:
<igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Height="200px" Width="325px"> <DisplayLayout> <ClientSideEvents KeyDownHandler="keyDown" /> </DisplayLayout> </igtbl:UltraWebGrid> <script type="text/javascript"> function keyDown(gridID, rowID, keyCode) { if (keyCode == 9) { alert("Tab Is Pressed"); } } </script>
and everything worked as expected. What is different in your case? Do you handle the keyDown client-side event or something else?