BUG 7279 "PM tables can not be created" SOLVED

- the problem was a reserved word in JS over IE.
This commit is contained in:
Erik Amaru Ortiz
2011-07-20 11:59:42 -04:00
parent a8e4c7c8c5
commit 69b452c266

View File

@@ -700,13 +700,13 @@ function addColumn() {
field_key : 0,
field_null : 1
});
length = assignedGrid.getStore().data.length;
var len = assignedGrid.getStore().data.length;
editor.stopEditing();
store.insert(length, row);
store.insert(len, row);
assignedGrid.getView().refresh();
assignedGrid.getSelectionModel().selectRow(length);
editor.startEditing(length);
assignedGrid.getSelectionModel().selectRow(len);
editor.startEditing(len);
}
function editColumn()