Can we have keyboard shortcuts implemented to a grid? For example if my grid contains two columns
                Dept                       Description
                   IT                      computers,projects
                  HR                     recruitment, payroll
Now if I type i the row IT should be selected in the grid or if I type h on my keyboard HR should be selected. If there is a way this could be done with your grid?
You can attach any custom key handlers 
grid.attachEvent(“onKeyPress”,function(keycode){
           if (keycode == “some”)
                 do_something();
          return true; 
});