Deleting a row
I have a row delete working with left mouse click on the row, with
obj.setAction("click", rowDelete);
But of course this not standard functionality, to delete with a mouse click, and I would like to delete a row when the Delete key is pressed. However, I tried
obj.setAction("onkeyup", rowDelete);
and it doesn't work, I guess this event is not implemented. Does anyone have an idea how I can do this?
Thanks
obj.setAction("click", rowDelete);
But of course this not standard functionality, to delete with a mouse click, and I would like to delete a row when the Delete key is pressed. However, I tried
obj.setAction("onkeyup", rowDelete);
and it doesn't work, I guess this event is not implemented. Does anyone have an idea how I can do this?
Thanks
Rich F
February 11,