How do I point the focus of the grid to the rows, after a button press in the toolbar (ie. focus to body of grid with no rows), I was then thinking of running a command similar to this to paste data which creates rows.
var e = jQuery.Event("keydown");
e.which = 86;
e.ctrlKey = true;
$("input").trigger(e);
I am guessing I would need to change this line to point the focus to the grid rows $("input").trigger(e); to something like this? $("#grid_json_employeeBulk").pqGrid.trigger(e);