Explorar el Código

[진료관리 - 상세] 메모 수정시 기입력된 날짜 포맷팅 적용.

sjpark hace 4 años
padre
commit
298ef06214
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/main/webapp/WEB-INF/jsp/clinic/info.jsp

+ 1 - 1
src/main/webapp/WEB-INF/jsp/clinic/info.jsp

@@ -733,7 +733,7 @@ function handleModifyMemo(memoId, recordedDate) {
 			memoInfoHTML += '	</div>';
       memoInfoHTML += ' </td>';
   $('#memoInfo').html(memoInfoHTML);
-  $('#modifMemoDateTime').val(recordedDate);
+  $('#modifMemoDateTime').val(gridDateFormatter(recordedDate));
   $('#defaultModalPrimaryMemo').modal();
   setTimeout(function (){
     $('#memoInfo').find('.form-row textarea').focus();