티스토리 뷰
반응형
toast grid에서 input값을 넣을때 자꾸 null이 찍혀서 짜증날때 간편 해결법이 있습니다.
위의 증상이죠.
기본 CustomTextEditor 의 내용을 일부 수정하는 것인데요,
class CustomTextEditor {
constructor(props) {
const el = document.createElement('input');
const {maxLength} = props.columnInfo.editor.options;
el.type = 'text';
el.maxLength = maxLength;
el.value = String(props.value);
this.el = el;
}
getElement() {
return this.el;
}
getValue() {
return this.el.value;
}
mounted() {
this.el.select();
}
}
수정하면 ?
class CustomTextEditor {
constructor(props) {
const el = document.createElement('input');
const {maxLength} = props.columnInfo.editor.options;
el.type = 'text';
el.maxLength = maxLength;
el.value = String(props.value ? props.value: "");
this.el = el;
}
getElement() {
return this.el;
}
getValue() {
return this.el.value;
}
mounted() {
this.el.select();
}
}
기존 코드 : el.value = String(props.value);
이것을 수정해서 : el.value = String(props.value ? props.value: "");
이렇게 되면 되네요^^
반응형
'IT tech Coding > javascript' 카테고리의 다른 글
자바스크립트 코드 나눠서 관리하는 방법 (0) | 2023.03.12 |
---|---|
[javascript] div td 요소를 찾아서 변경하고자 할때 알아두면 좋은 꿀팁 (0) | 2023.03.08 |
git에서 파일 설치하면 dist 폴더는 무슨용도? (0) | 2023.02.27 |
자주만나는 에러 "DevTools failed to load source map: Could not load content for" 없애기 (0) | 2023.02.16 |
[자바스크립트] javascript 창닫기 누른 후 부모창에 작용하는 간단한 방법 (0) | 2023.01.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 엑셀입력보호
- ajax오류메시지
- 테크에능한여성
- 뫄프로그래밍
- 티스토리챌린지
- 파이썬코드줄바꿈방법
- #파이썬패키징
- 도면자동생성
- 프로그래머생활
- 엑셀보호
- 1. #웹개발 2. #로트번호 3. #성적서보기 4. #ajax 5. #jquery 6. #php 7. #프론트엔드 8. #백엔드 9. #부트스트랩 10. #웹기능구현
- 오블완
- 스크립트작성기초
- coalesce는 한국어로 "코얼레스크" 또는 "코얼리스"
- json파일편하게보는법
- Bootstrap 5
- #InstallForge
- json파일형태보기
- 코딩효율성
- 캐드자동작도
- 효율적코딩방법
- General error: 2031
- 코딩튜토리얼
- chatGPT3.5파이썬버전
- 오토핫키가이드
- 구글드라이브API
- 엑셀셀보호
- sql문장 날짜계산
- isset을 적용해야 하는 이유
- #프로그램설치
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함