Update 1908

This commit is contained in:
dev
2025-08-20 10:17:23 +09:00
parent 08637f6321
commit 7baa87df12
6 changed files with 198 additions and 75 deletions

View File

@ -261,18 +261,18 @@ export default {
formatter({ value }) {
return value == 1 ? '휴일' : '평일';
},
editor: {
type: CustomSelectBoxEditor,
},
// editor: {
// type: 'select',
// options: {
// listItems: [
// { text: '휴일', value: '1' },
// { text: '평일', value: '0' },
// ],
// },
// type: CustomSelectBoxEditor,
// },
editor: {
type: 'select',
options: {
listItems: [
{ text: '휴일', value: '1' },
{ text: '평일', value: '0' },
],
},
},
},
{ header: '휴일명', name: 'hldyNm', editor: 'text' },
];
@ -482,6 +482,8 @@ const defaultData = {
height: 100%;
padding: 0;
margin: 0;
border: 1px solid;
border-radius: 6px;
}
select.selectbox {
@ -510,10 +512,8 @@ const defaultData = {
/* 네이티브 외형 감추기 */
-moz-appearance: auto;
appearance: auto;
background: #fff;
border: 1px solid #d9d9d9;
border: 1px solid;
border-radius: 6px;
color: rgba(0,0,0,0.87843);
}
.tui-grid-layer-editing {