가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Without Book 질문하기

Review the question and existing answers carefully before replying. The best answers explain the reasoning, steps, and tradeoffs so other learners can benefit too.

질문. Date format with Dojo in my jsp

- Hi,
I want a different format while I select a date from calendar in my jsp.
How can I do that work in Dojo if possible?

작성일 Jul 31, 2014 작성자 Abhi
답변. Check below code where you can get the selected date as per your desired format (here dd/MM/yyyy):

<form:input path=\"registryDetail.bankRegistryVoiceRecvDate\" id=\"BRVoiceReceivedDate\" title=\"Select Voice received date\"/>
<script type=\"text/javascript\">
Spring.addDecoration(new Spring.ElementDecoration({
elementId : \"BRVoiceReceivedDate\",
widgetType : \"dijit.form.DateTextBox\",
widgetAttrs : {
value : dojo.date.locale.parse(dojo.byId(\"BRVoiceReceivedDate\").value, {selector : \"date\", datePattern : \"dd/MM/yyyy\"}),
datePattern : \"dd/MM/yyyy\",
required : true,
constraints : {datePattern : \"dd/MM/yyyy\"}
}
}));
</script>
작성일 Aug 01, 2014 작성자 Devnarayan

답변 입력

이름
이메일 주소
답변
보안 확인
계속하려면 풀어주세요: 3 + 4 = ?
Copyright © 2026, WithoutBook.