지도사용요청 지질 disabled

master
강석 최 2022-03-23 11:15:16 +09:00
parent d349479585
commit 7c24bbee9f
3 changed files with 7 additions and 4 deletions

View File

@ -103,7 +103,8 @@
<input type="checkbox"
name="${item.code}" id="${item.code}" value="${item.layer}"
${fn:contains(useRequestVO.layers, item.layer)?'checked':''}
${item.layer eq 'GND_WELL'?'disabled':''}/> <c:out value='${item.name}'/>
${item.layer eq 'GND_WELL'?'disabled':''}
${item.layer eq 'GND_LIPID'?'disabled':''}/> <c:out value='${item.name}'/>
</label>
</c:if>
</c:forEach>

View File

@ -108,7 +108,7 @@
name="${item.code}" id="${item.code}" value="${item.layer}"
${fn:contains(useRequestVO.layers, item.layer)?'checked':''}
${item.layer eq 'GND_WELL'?'disabled':''}
/>${item.name}
${item.layer eq 'GND_LIPID'?'disabled':''}/>${item.name}
</label>
</c:if>
</c:forEach>
@ -229,7 +229,8 @@
<input type="checkbox"
name="${item.code}" id="${item.code}" value="${item.layer}"
${fn:contains(useRequestVO.layers, item.layer)?'checked':''}
${item.layer eq 'GND_WELL'?'disabled':''}/>${item.name}
${item.layer eq 'GND_WELL'?'disabled':''}
${item.layer eq 'GND_LIPID'?'disabled':''}/>${item.name}
</label>
</c:if>
</c:forEach>

View File

@ -85,7 +85,8 @@
<label class="layer-label">
<input type="checkbox"
name="${item.code}" id="${item.code}" value="${item.layer}"
${item.layer eq 'GND_WELL'?'disabled':''}/> ${item.name}
${item.layer eq 'GND_WELL'?'disabled':''}
${item.layer eq 'GND_LIPID'?'disabled':''}/> ${item.name}
</label>
</c:if>
</c:forEach>