+
설비별 에너지 계획 리스트
@@ -291,7 +291,7 @@ export default {
},
};
- class CustumButton {
+ class CustomButton {
constructor(props) {
const { grid, rowKey, columnInfo } = props;
@@ -304,7 +304,7 @@ export default {
$(elDiv).addClass('tui-grid-cell-content d-flex justify-space-between');
const el2 = document.createElement('button');
$(el2).addClass('edit-btn blue--text');
- el2.innerText = 'Edit';
+ el2.innerText = '편집하다';
elDiv.appendChild(el2);
this.el = elDiv;
@@ -352,7 +352,7 @@ export default {
header: 'NO',
name: 'rowNum',
width: 40,
- align: 'center',
+ align: 'right',
// hidden: true,
},
{
@@ -389,7 +389,7 @@ export default {
// `;
// }
renderer: {
- type: CustumButton,
+ type: CustomButton,
options: {
value: '계획수정',
},
@@ -402,7 +402,7 @@ export default {
align: 'center',
hidden: true,
renderer: {
- type: CustumButton,
+ type: CustomButton,
options: {
value: '계획수정',
},
diff --git a/plugins/gridUtility.js b/plugins/gridUtility.js
index 1593079..e39230e 100644
--- a/plugins/gridUtility.js
+++ b/plugins/gridUtility.js
@@ -115,7 +115,7 @@ export class CustomCalcNumberEditor {
}
}
-export class CustumChecbox {
+export class CustomCheckbox {
constructor(props) {
const el = document.createElement('input');
const { grid, rowKey, columnInfo } = props;
@@ -169,7 +169,7 @@ export class CustumChecbox {
}
}
-export class CustumButton {
+export class CustomButton {
constructor(props) {
const el = document.createElement('button');
const { grid, rowKey, columnInfo } = props;