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

📄 topsf02providerinputhelper.jsp

📁 Jbuilder2006开发的严格按MVC设计模式组织开发过程
💻 JSP
字号:
<%@page contentType="text/html; charset=GBK"%><%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%><%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%><%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%><%@taglib uri="/WEB-INF/tops.tld" prefix="tops"%><html:html>  <head>  <html:base/>  <tops:includeCSS fileName="style"/>  <tops:includeJs fileName="common"/>  <tops:includeJs fileName="datepicker"/>  <tops:includeJs fileName="inputhelper"/>  <tops:includeJs fileName="Table"/>  </head>  <title>供应商选择</title>  <body>  <html:form action="/actTopsF02Provider" method="get">    <html:hidden property="method"/>    <tops:showPageFunction pageFunction="供应商选择"/>    <tops:toolbar>      <td>        <html:text property="keyword" size="10"/>      </td>      <tops:toolbutton caption="查询" image="application_form_magnify" checkAtClient="false"/>      <tops:toolbutton caption="关闭" image="arrow_undo" checkAtClient="false" onClick="cancelHelper()"/>    </tops:toolbar>    <table cellpadding="0" cellspacing="1" border="0" width="100%" id="PowerTable">      <tr align="center">        <td height="20" width="5%" nowrap class="title">序号</td>        <td width="10%" nowrap class="title">供应商编号</td>        <td width="10%" nowrap class="title">供应商名称</td>      </tr>      <logic:notEmpty name="objlist">        <logic:iterate id="obj" name="objlist" indexId="index">          <tr align="center">            <td height="20">              <tops:tableOrd/>            </td>            <td>              <tops:inputHelperValueSetter name="obj" captionProperty="proriderName" thisCaptionProperty="proriderId" uuidProperty="id"/>            </td>            <td>              <tops:inputHelperValueSetter name="obj" captionProperty="proriderName" thisCaptionProperty="proriderName"  uuidProperty="id"/>            </td>          </tr>        </logic:iterate>      </logic:notEmpty>      <logic:empty name="objlist">        <tr>          <td colspan="3" height="20" align="center">没有数据</td>        </tr>      </logic:empty>    </table>    <bean:write name="pageStr" scope="request" filter="false"/>  </html:form>  </body></html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -