We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
** 공백으로 만들 수 있는 방법을 알려주세요...
The text was updated successfully, but these errors were encountered:
@sohee-kang 안녕하세요. 달력이 닫힐 때 발생하는 이벤트를 이용해주면 공백으로 만들었을 때 빈칸으로 남겨진 상태로 남겨줄 수 있을 것 같습니다.
datepicker.on('close', function() { if (!document.getElementById('datepicker-input').value.length) { datepicker.setDate(null); } });
Sorry, something went wrong.
close이벤트에서 처리하는 방법은, backspace 로 지울때는 해결이 안되네요.. 임시로 tui-date-picker.js 수정하는 방법으로 하면 될것 같습니다. (문제없으면 나중에 update될때 반영되면 좋겠네요)
if (isFailed) { if (shouldRollback) { + //parsing 에러 났을때, 빈값이면 원래값으로 원복하지 않는다 + if (this._datepickerInput._input.value) { this._syncToInput(); + } else { + this.setNull(); + } } else { this.setNull(); } }
No branches or pull requests
** 공백으로 만들 수 있는 방법을 알려주세요...
The text was updated successfully, but these errors were encountered: