Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- listener 1883
- 1883
- html #select #option #multiple
- 서버동기화
- 공인IP
- DatePicker
- c# datagridview 데이터 넣기
- 맥 어드레스
- setInterval clear
- setInterval 중지
- mosquitto
- mySQL_Replication
- allow_anonymouse
- mosquitto.conf
- pm2 확인
- pm2 시작
- datagridview 직접입력
- invalid data
- transfer
- map이 undefined가 뜰 때
- pm2
- AntDesign
- 데이터테이블 데이터 넣기
- pm2 설치
- timepicker
- setInterval 정지
- setInterval 외부 정지
- DataGridView 직접 입력
- pm2 상태 확인
- Replication
Archives
- Today
- Total
개발 노트
antDesign Datepicker 미래 날짜 선택 못하게 설정 본문
disabledDate={(current) =>
current && current >= moment().endOf('day')
}
위의 속성을 추가해주면 된다.
예시 코드는 아래.
<RangePicker
// defaultValue={[
// moment(selectedDates, 'YYYY-MM-DD'),
// moment(selectedDatee, 'YYYY-MM-DD'),
// ]}
format={'YYYY-MM-DD'}
value={[
getDateFormat(moment(selectedDates, 'YYYY-MM-DD')),
getDateFormat(moment(selectedDatee, 'YYYY-MM-DD')),
]}
onChange={onChange}
disabledDate={(current) =>
current && current >= moment().endOf('day')
}
/>
'React' 카테고리의 다른 글
Input 입력 후 유효성 검사 : 문제 해결 과정 / Debounce 발견 (0) | 2023.06.14 |
---|---|
eslint -disable 경고 해결 (0) | 2023.06.14 |
useEffect에서 setInterval 사용할시 주의점 (0) | 2023.04.20 |
React에서 object를 setter함수로 다룰 때 (0) | 2023.04.05 |
"TypeError: rawData.some is not a function" 오류 메시지 (0) | 2023.03.13 |