grid

Can i add a new row to the grid when i click on the F-12 key??

You can achieve such functionality by using grid’s events

grid.attachEvent(“onKeyPress”,function(code){
    if (code == SOME ){
          var id = (new Date()).valueOf();
          grid.addRow(id,"",-1);
    }
    else return true;
});


where SOME - key code of necessary key