diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/adr/adjstDeputyReqCreate.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/adr/adjstDeputyReqCreate.jsp index 1c183495..7fd1f16a 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/adr/adjstDeputyReqCreate.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/adr/adjstDeputyReqCreate.jsp @@ -29,13 +29,14 @@ c <%@ page contentType="text/html; charset=utf-8"%> $("input[name=rpplRltnTy]").on("click",function(){ if($(this).is(":checked")){ $("input[name=rpplRltnTy]").prop("checked" , false); - $(this).closest("td").find("input[type=text]").prop("disabled", true); + $(this).closest("td").find("input[type=text]").prop("readonly", true); $(this).closest("td").find("input[type=text]").val(""); $(this).prop("checked" , true); - $(this).next().next().prop("disabled", false); + $(this).next().next().prop("readonly", false); + $(this).next().next().removeClass("read-only"); }else{ $(this).next().next().val(""); - $(this).next().next().prop("disabled", true); + $(this).next().next().prop("readonly", true); } }); @@ -287,11 +288,11 @@ c <%@ page contentType="text/html; charset=utf-8"%>