⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 worktypefixedassetstdcrud.jsp

📁 一个很好的开源项目管理系统源代码
💻 JSP
字号:
<%@ include file="../includes/taglibs.jsp" %><form name="appForm" action="workTypeFixedAssetStdCrud.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="fixedAssetTypeCd" />*</th>              <th><spring:message code="estimatedQty" /></th>              <th><spring:message code="estimatedCost" /></th>              <th><spring:message code="estimatedCostCur" /></th>              <th><spring:message code="estimatedDuration" /></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.fixedAssetStandards}">              <spring:bind path="fixedAssetStandards[${loop.index}].processType" >                <c:set target="${rowHelper}" property="processType" value="${status.value}"/>                <c:set target="${rowHelper}" property="processTypePath" value="fixedAssetStandards[${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="fixedAssetStandards[${loop.index}].version" />                  <html:select path="fixedAssetStandards[${loop.index}].fixedAssetTypeCd" disabled="${rowHelper.keyReadonly}" styleClass="${rowHelper.keyCss}" >                    <html:options items="${getCachedFixedAssetTypeLov}"                    value="value" label="label" selected="${command.fixedAssetStandards[loop.index].fixedAssetTypeCd}"/>                  </html:select>                </td>                <td>                  <html:text path="fixedAssetStandards[${loop.index}].estimatedQty" size="7" maxlength="7" readonly='${rowHelper.fldReadonly}' styleClass='${rowHelper.fldCss}'/>                </td>                <td>                  <html:text path="fixedAssetStandards[${loop.index}].estimatedCost" size="10" maxlength="10" readonly='${rowHelper.fldReadonly}' styleClass='${rowHelper.fldCss}'/>                </td>                <td>                  <html:select path="fixedAssetStandards[${loop.index}].estimatedCostCur" disabled="${rowHelper.fldReadonly}" styleClass="${rowHelper.fldCss}" >                    <html:options items="${getCachedCurrencyLov}"                    value="value" label="label" selected="${command.fixedAssetStandards[loop.index].estimatedCostCur}"/>                  </html:select>                </td>                <td>                  <html:text path="fixedAssetStandards[${loop.index}].estimatedDuration" size="10" maxlength="10" readonly='${rowHelper.fldReadonly}' styleClass='${rowHelper.fldCss}'/>                </td>                <td>                  <html:text path="fixedAssetStandards[${loop.index}].lastModifiedBy" size="10" readonly='true' styleClass='readonlyField' />                </td>                <td>                  <html:text path="fixedAssetStandards[${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 + -