feat: 암석시험정보 > 삼축압축에서 시험횟수 숫자 입력 시, 바로 적용되도록 개선

main
thkim 2026-03-25 16:38:21 +09:00
parent 4520f140c1
commit 25496d0f0c
1 changed files with 5 additions and 1 deletions

View File

@ -601,7 +601,11 @@ function fn_openClipReport2(table,project,hole,sample,etc1,etc2,gbn){
<div class="table-top-control"> <div class="table-top-control">
<div class="table-info-group form-inline" data-target="grid-row-cnt"> <div class="table-info-group form-inline" data-target="grid-row-cnt">
<input type="text" name="GridRowCnt" id="GridRowCnt" value="${fn:length(items)}" maxlength="2" onkeypress="fn_gridAddEnterKey(event);return isNumberKey(event);" onChange="fn_rowChange()" class="gg-input row-control-input"> <input type="text" name="GridRowCnt" id="GridRowCnt" value="${fn:length(items)}" maxlength="2" onkeypress="fn_gridAddEnterKey(event);return isNumberKey(event);" onChange="fn_rowChange()"
onkeyup="fn_rowChange()"
onclick="this.select()"
onfocus="this.select()"
class="gg-input row-control-input" />
<button type="button" class="btn btn-small btn-rounded5 btn-dark-gray btn-icon-single btn-icon-pm-plus" onClick="fn_add(); return false;"></button> <button type="button" class="btn btn-small btn-rounded5 btn-dark-gray btn-icon-single btn-icon-pm-plus" onClick="fn_add(); return false;"></button>
<button type="button" class="btn btn-small btn-rounded5 btn-dark-gray btn-icon-single btn-icon-pm-minus" onClick="removeItemAt(); return false;"></button> <button type="button" class="btn btn-small btn-rounded5 btn-dark-gray btn-icon-single btn-icon-pm-minus" onClick="removeItemAt(); return false;"></button>
</div> </div>