Skip to content

Commit 4e2fd73

Browse files
authored
Update GridEditor.js
fixed another "ID" case issue
1 parent f0a7fa1 commit 4e2fd73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/GridEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function DataGridEditRow(trId, aSpanIds, rowId, saveFormId, onEditFunction) {
1818
_trId = trId;
1919
_rowId = rowId;
2020
_saveForm = document.getElementById(saveFormId);
21-
if (_saveForm) _saveForm.elements["Id"].value = rowId;
21+
if (_saveForm) _saveForm.elements["ID"].value = rowId;
2222

2323
if (onEditFunction != null) onEditFunction(rowId);
2424
}

0 commit comments

Comments
 (0)