📄 worktypepartstdcrud.jsp
字号:
<%@ include file="../includes/taglibs.jsp" %><form name="appForm" action="workTypePartStdCrud.do" method="post"> <input type="hidden" name="dispatch" value=""> <input type="hidden" name="_txToken" value="<%=session.getAttribute("txToken") %>"> <%@ include file="../includes/crumbs.jsp" %> <c:if test='${! viewHelper.viewonly}' > <div id="buttonBar"> <%@ include file="../includes/oneToManyCrudButtonBar.jsp" %> </div> </c:if> <spring:nestedPath path="command"> <div id="crud"> <div id="master"> <table> <tr> <td class="label"> <spring:message code="workTypeCd"/>: </td> <td> <html:text path="workTypeCd" size="30" maxlength="30" readonly="true" styleClass="readonlyField"/> </td> </tr> <tr> <td class="label"> <spring:message code="description"/>: </td> <td> <html:text path="description" size="80" maxlength="80" readonly="true" styleClass="readonlyField"/> </td> </tr> </table> </div> <%@ include file="../includes/addRowButton.jsp" %> <div id="detail"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th><spring:message code="rowNo" /> </th> <th class="nowrap"><spring:message code="rowAction" /> </th> <th class="required"><spring:message code="partTypeCd" />*</th> <th><spring:message code="estimatedQty" /></th> <th><spring:message code="estimatedCost" /></th> <th><spring:message code="estimatedCostCur" /></th> <th><spring:message code="lastModifiedBy" /></th> <th><spring:message code="lastModifiedTs" /></th> </tr> </thead> <tbody> <jsp:useBean id="rowHelper" class="net.java.workeffort.infrastructure.view.RowHelper" /> <c:forEach varStatus="loop" items="${command.partStandards}"> <spring:bind path="partStandards[${loop.index}].processType" > <c:set target="${rowHelper}" property="processType" value="${status.value}"/> <c:set target="${rowHelper}" property="processTypePath" value="partStandards[${loop.index}].processType"/> </spring:bind> <tr class="<c:out value='${rowHelper.rowCss}' />" > <td> <c:out value="${loop.index+1}" /> </td> <td class="nowrap"> <%@ include file="../includes/insertUpdateDeleteIgnore.jsp" %> </td> <td> <html:hidden path="partStandards[${loop.index}].version"/> <html:select path="partStandards[${loop.index}].partTypeCd" disabled="${rowHelper.keyReadonly}" styleClass="${rowHelper.keyCss}" > <html:options items="${getCachedPartTypeLov}" value="value" label="label" selected="${command.partStandards[loop.index].partTypeCd}"/> </html:select> </td> <td> <html:text path="partStandards[${loop.index}].estimatedQty" size="10" maxlength="10" readonly='${rowHelper.fldReadonly}' styleClass='${rowHelper.fldCss}' /> </td> <td> <html:text path="partStandards[${loop.index}].estimatedCost" size="10" maxlength="10" readonly='${rowHelper.fldReadonly}' styleClass='${rowHelper.fldCss}' /> </td> <td> <html:select path="partStandards[${loop.index}].estimatedCostCur" disabled="${rowHelper.fldReadonly}" styleClass="${rowHelper.fldCss}" > <html:options items="${getCachedCurrencyLov}" value="value" label="label" selected="${command.partStandards[loop.index].estimatedCostCur}"/> </html:select> </td> <td> <html:text path="partStandards[${loop.index}].lastModifiedBy" size="10" readonly='true' styleClass='readonlyField' /> </td> <td> <html:text path="partStandards[${loop.index}].lastModifiedTs" size="10" readonly='true' styleClass='readonlyField' /> </td> </tr> </c:forEach> </tbody> </table> </div> </div> </spring:nestedPath></form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -