|
@@ -645,6 +645,12 @@
|
|
|
if (info.keyCode == 13) {
|
|
|
if (dcdataList1.getRowCount() != info.rowIndex) {
|
|
|
grdData1.setFocusedCell(info.rowIndex + 1, info.colIndex, true);
|
|
|
+
|
|
|
+ // 아래 컬럼이 ReadOnly 이면 다음 컬럼 이동
|
|
|
+ var cellReadOnly = grdData1.getCellReadOnly(info.rowIndex + 1 , info.colIndex);
|
|
|
+ if(cellReadOnly == true){
|
|
|
+ grdData1.setFocusedCell(info.rowIndex + 2, info.colIndex, true);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
};
|