File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<th:block th:replace="egovframework/manage/template/top"></th:block>
<script th:inline="javascript">
function fn_egov_modify_CmmnClCode(form){
if(form == null){
return false;
}
if(confirm('수정하시겠습니까?')) {
return true;
}
return false;
}
</script>
<div id="cntnts">
<form name="cmmnClCode" th:action="@{/manage/sym/ccm/EgovCcmCmmnClCodeModify.do}" method="post" th:object="${cmmnClCode}">
<input type="hidden" th:field="*{clCode}" />
<table class="chart2">
<colgroup>
<col width="150" />
<col width="" />
</colgroup>
<tr>
<th><em>*</em> <label for="clCode">분류코드</label></th>
<td th:text="*{clCode}">코드</td>
</tr>
<tr>
<th><em>*</em> <label for="clCodeNm">분류코드명</label></th>
<td>
<input type="text" id="clCodeNm" th:field="*{clCodeNm}" maxlength="60" class="inp_long" />
<div class="error" th:if="${#fields.hasErrors('clCodeNm')}" th:errors="*{clCodeNm}"></div>
</td>
</tr>
<tr>
<th><em>*</em> <label for="clCodeDc">분류코드설명</label></th>
<td>
<textarea id="clCodeDc" th:field="*{clCodeDc}" rows="7" cols="60" class="inp_default"></textarea>
<div class="error" th:if="${#fields.hasErrors('clCodeDc')}" th:errors="*{clCodeDc}"></div>
</td>
</tr>
<tr>
<th><em>*</em> <label for="useAt">사용여부</label></th>
<td>
<select id="useAt" th:field="*{useAt}">
<option value="Y">Yes</option>
<option value="N">No</option>
</select>
</td>
</tr>
</table>
<div class="btn_r">
<button type="submit" class="btn" onclick="return fn_egov_modify_CmmnClCode(this.form);">수정</button>
<a th:href="@{/manage/sym/ccm/EgovCcmCmmnClCodeList.do(pageIndex=${searchVO.pageIndex},searchCondition=${searchVO.searchCondition},searchKeyword=${searchVO.searchKeyword})}">
<img th:src="@{/resources/manage/image/btn/btn_list.gif}" alt="목록" />
</a>
</div>
</form>
</div>
<th:block th:replace="egovframework/manage/template/bottom"></th:block>