Tengo la siguiente situación. Estoy utilizando el ActiveWidgets para crear grid los cuales se crean muy bien lo que deseo hacer es saber como meto un envento onkeypress para que al momento de darle enter alguna de las celdas rellene ejecute un evento x.
Te muestro el código que tengo.
Código HTML:
Ver original
Código Javascript:
Ver original
<script type="text/javascript"> var obj = new AW.UI.Grid; // var obj = new AW.Grid.Extended;1 obj.setSize(600, 250); obj.setCellText(function(i, j){return j + "-" + i}); obj.setHeaderText("header"); obj.setColumnCount(10); obj.setRowCount(100); obj.setCellEditable(true); document.write(obj); obj.onRowAdded = function(row){ window.status = "Row added: " + row; this.setCellText("new", 0, row); } obj.onRowDeleting = function(row){ return !confirm("Delete row " + row + "?"); } obj.onRowDeleted = function(row){ window.status = "Row deleted: " + row; } // row index var serial = 1000; function add(){ obj.addRow(serial++); } function del(){ var i = obj.getCurrentRow(); obj.deleteRow(i); } </script>