Bug in 2.61 using IE 8
If you change the "add delete row.htm" example file listed on this site and replace the add() function with the following function which adds the row but then immediately makes it editable it won't work in IE 8 but will in FF and IE 9+:
function add(){
obj.addRow(serial++);
obj.setSelectedColumns([1]);
obj.setSelectedRows([serial-1]);
obj.setCurrentColumn(1);
obj.setCurrentRow(serial-1);
obj.raiseEvent("editCurrentCell", {},1, serial-1);
}
Is there a work around or something that should be done differently?
function add(){
obj.addRow(serial++);
obj.setSelectedColumns([1]);
obj.setSelectedRows([serial-1]);
obj.setCurrentColumn(1);
obj.setCurrentRow(serial-1);
obj.raiseEvent("editCurrentCell", {},1, serial-1);
}
Is there a work around or something that should be done differently?
Chris
April 8,