BUG 7279 "PM tables can not be created" SOLVED
- the problem was a reserved word in JS over IE.
This commit is contained in:
@@ -700,13 +700,13 @@ function addColumn() {
|
|||||||
field_key : 0,
|
field_key : 0,
|
||||||
field_null : 1
|
field_null : 1
|
||||||
});
|
});
|
||||||
length = assignedGrid.getStore().data.length;
|
var len = assignedGrid.getStore().data.length;
|
||||||
|
|
||||||
editor.stopEditing();
|
editor.stopEditing();
|
||||||
store.insert(length, row);
|
store.insert(len, row);
|
||||||
assignedGrid.getView().refresh();
|
assignedGrid.getView().refresh();
|
||||||
assignedGrid.getSelectionModel().selectRow(length);
|
assignedGrid.getSelectionModel().selectRow(len);
|
||||||
editor.startEditing(length);
|
editor.startEditing(len);
|
||||||
}
|
}
|
||||||
|
|
||||||
function editColumn()
|
function editColumn()
|
||||||
|
|||||||
Reference in New Issue
Block a user