123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ page language="java"
- import="java.util.*,
- com.sysmodel.XFormFactory,
- com.sysmodel.collectmodel.xmlmodel.impl.FormCollectionImpl,
- com.sysmodel.datamodel.xmlmodel.impl.MdpClassImpl,
- com.sysmodel.datamodel.xmlmodel.able.SysModel,
- com.sysmodel.datamodel.xmlmodel.impl.MdpAttributeImpl,
- com.sysmodel.datamodel.xmlmodel.ModelFactory,
- com.sysmodel.collectmodel.xmlmodel.impl.ReportFieldImpl,
- com.sysmodel.xformmodel.importcontrol.TextAreaControl,
- com.sysmodel.collectmodel.xmlmodel.able.FormCollection,
- com.sysmodel.xformmodel.impl.RegExpImpl,
- com.sysmodel.XFormModelImpl,
- com.sysmodel.xformmodel.able.Validate,
- com.sysmodel.xformmodel.impl.DojoInputTypeImpl"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <% String pageid=request.getParameter("pageid")==null ? "0" : request.getParameter("pageid");
- String name = request.getParameter("name") == null ? "" : request.getParameter("name");
- String action="add";
- String label="";
- String colspan="";
- String maxlengths="";
- String promptMessage="";
- String invalidMessage="";
- String need="";
- String trime="";
- String regxValue = "";
- String max="";
- String min="";
-
- String dojoInuptType = "";
- int columnCount = 0;
- FormCollection FormCollection =null;
- if(session.getAttribute("FormCollect"+pageid) == null){
- return;
- } else {
- FormCollection = (FormCollection)session.getAttribute("FormCollect"+pageid);
- columnCount = FormCollection.getPageBody().getColumnCount();
- if(!name.equals("")){
-
- action="edit";
-
- ReportFieldImpl ReportFieldImpl = FormCollection.getReportFieldByName(FormCollection,name);
- label=ReportFieldImpl.getLabel();
- colspan=ReportFieldImpl.getColspan()+"";
-
- Validate Validate = ReportFieldImpl.getValidate();
- need = new Boolean(Validate.isNeed()).toString();
- trime = new Boolean(Validate.isTrim()).toString();
- invalidMessage = Validate.getInvalidMessage();
- promptMessage = Validate.getPromptMessage();
- regxValue = Validate.getRegxValue();
- maxlengths=Validate.getMaxLength();
- max=Validate.getMaxValue();
- min=Validate.getMinValue();
- dojoInuptType=Validate.getDojoType();
- }
-
- FormCollection=(FormCollectionImpl)session.getAttribute("FormCollect"+pageid);
- }
- %>
- <title>定义文本框查询构件</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="定义文本框查询构件">
- <link rel="stylesheet" href="../../../styles/css.css" type="text/css"></link>
- <link rel="stylesheet" href="../../../styles/style.css" type="text/css"></link>
- <script type="text/javascript">
- function checkinput(){
- document.forms[0].submit();
- }
- </script>
- <script type="text/javascript" src="../../../scripts/dojo/dojo/dojo.js" djConfig="isDebug: false, parseOnLoad: true"></script>
- <script type="text/javascript">
- dojo.require("dijit.form.Form");
- dojo.require("dijit.form.ValidationTextBox");
- dojo.require("dijit.form.ComboBox");
- dojo.require("dijit.form.FilteringSelect");
- dojo.require("dijit.form.NumberSpinner");
- dojo.require("dijit.form.Button");
- dojo.require("dijit.Tooltip");
- dojo.require("dojo.parser");
- </script>
- <style type="text/css">
- @import "../../../scripts/dojo/dojo/resources/dojo.css";
- @import "../../../scripts/dojo/dijit/themes/tundra/tundra.css";
- @import "../../../scripts/dojo/dijit/themes/tundra/tundra_rtl.css";
- @import "../../../scripts/dojo/dijit/tests/css/dijitTests.css";
- .formQuestion {
- background-color:#d0e3f5;
- padding:0.3em;
- font-weight:900;
- font-family:Verdana, Arial, sans-serif;
- font-size:0.8em;
- color:#5a5a5a;
- }
- .formAnswer {
- background-color:#f5eede;
- padding:0.3em;
- margin-bottom:1em;
- width: 100%;
- }
- .pageSubContentTitle {
- color:#8e8e8e;
- font-size:1em;
- font-family:Verdana, Arial, sans-serif;
- margin-bottom:0.75em;
- }
- .small INPUT {
- width: 2.5em;
- }
- .medium INPUT {
- width: 10em;
- }
- .long INPUT {
- width: 20em;
- }
- .firstLabel {
- display: inline-block;
- display: -moz-inline-box;
- width: 10em;
- min-width: 10em;
- }
- .secondLabel {
- width: auto;
- margin-left: 5em;
- margin-right: 1em;
- }
- fieldset label {
- margin-right: 1em;
- }
- .noticeMessage {
- display: block;
- float: right;
- font-weight: normal;
- font-family:Arial, Verdana, sans-serif;
- color:#663;
- font-size:0.9em;
- }
- </style>
-
- </head>
-
- <body class="tundra">
- <form name="form1" method="post" action="textareaExc.jsp">
- <input type="hidden" name="pageid" value="<%=pageid %>">
- <input type="hidden" name="action" value="<%=action %>">
- <input type="hidden" name="oname" value="<%=name %>">
- <div id=total>
- <div class="whiteborder">
- <div class="titback">
- <div class="floatleft"><img src="../../../images/index/arrow1.gif" width="20" height="24"/></div>
- <div class="dropshadow">定义文本框采集构件</div>
- <div class="clear"></div>
- </div>
- <div class="report">
- <table border="0" align="center" width="100%" cellpadding="1" cellspacing="1" class="ltab2">
- <tr class="">
- <td width="15%">字段</td>
- <td align="left" >
- <select id="name" name="name"
- dojoType="dijit.form.FilteringSelect"
- required="true"
- autocomplete="true">
- <option value="0">--请选择--</option>
- <%ArrayList ReportFields=FormCollection.getAllReportFields();
- SysModel sysmodel = ModelFactory.getSysmodel();
- int iclassid = Integer.parseInt(FormCollection.getClassid());
- MdpClassImpl MdpClass = (MdpClassImpl)sysmodel.getMdpClassByClassID(iclassid);
-
-
- List MdpAttributes=MdpClass.getAllMdpAttributes();
- for(int j=0; j<MdpAttributes.size(); j++){
- MdpAttributeImpl MdpAttributeImpl=(MdpAttributeImpl)MdpAttributes.get(j);
- String name1=MdpAttributeImpl.getName();
- String Description=MdpAttributeImpl.getDescription();
- String referenceType=MdpAttributeImpl.getReferenceType()+"";//tree
- String DataType=MdpAttributeImpl.getDataType();
- boolean isshow=true;
- for(int i=0; i<ReportFields.size(); i++){
- ReportFieldImpl ReportField=(ReportFieldImpl)ReportFields.get(i);
- String name2=ReportField.getName();
- if(name1.equals(name2)||!referenceType.equals("0")||DataType.equals("date")){
- isshow=false;
- continue;
- }
- }if(isshow){
- %>
- <option value="<%=name1 %>"><%=Description%></option>
- <% }if(name1.equals(name) ){%>
- <option value="<%=name1 %>" selected><%=Description%></option>
- <%}
- }%>
- </select></td>
- </tr>
- <tr class="">
- <td>标题</td>
- <td align="left">
- <input type="text" value="<%=label %>"
- id="label" name="label" class="medium"
- dojoType="dijit.form.ValidationTextBox"
- required="true"
- ucfirst="true"
- invalidMessage="标题必须填写!"></td>
- </tr>
- <tr class="">
- <td>合并值</td>
- <td align="left"> <select id="colspan" name="colspan"
- dojoType="dijit.form.FilteringSelect"
- required="true"
- autocomplete="true">
- <option value="" >--请选择--</option>
- <%
- if(columnCount > 0){
- for (int i = 2 ; i<= columnCount * 2 ; i++){
- %>
- <option value="<%=i %>" <%if(colspan.equals(i+""))out.print("selected"); %>><%=i %></option>
- <%}} %>
- </select></td>
- </tr>
- <tr class="">
- <td>录入提示</td>
- <td align="left">
- <input type="text" value="<%=promptMessage %>"
- id="promptMessage" name="promptMessage" class="medium"
- dojoType="dijit.form.ValidationTextBox"
- required="false"
- ucfirst="true"
- invalidMessage="">
- </td>
- </tr><tr class="">
- <td>验证失败提示</td>
- <td align="left"><input type="text" value="<%=invalidMessage %>"
- id="invalidMessage" name="invalidMessage" class="medium"
- dojoType="dijit.form.ValidationTextBox"
- required="false"
- ucfirst="true"
- invalidMessage=""></td>
- </tr>
- </table>
- <table align="center" width="100%" cellpadding="1" cellspacing="1" class="ltab2">
- <tr class="TableBgColorBlack">
- <td colspan="4" align="left"><strong>录入验证</strong></td>
- </tr>
- <tr class="">
- <td>是否必填 <font color="red">*</font></td>
- <td align="left" >
- <select id="need" name="need"
- dojoType="dijit.form.FilteringSelect"
- required="true"
- autocomplete="true">
- <option value="true" <%if(need.equals("true"))out.print("selected"); %>>true</option>
- <option value="false"<%if(need.equals("false"))out.print("selected"); %>>false</option>
- </select>
- </td>
- </tr>
- <tr class="">
- <td>是否去掉空格</td>
- <td align="left" >
- <select id="trime" name="trime"
- dojoType="dijit.form.FilteringSelect"
- required="true"
- autocomplete="true">
- <option value="true" <%if(trime.equals("false"))out.print("selected"); %>>true</option>
- <option value="false" <%if(trime.equals("false"))out.print("selected"); %>>false</option>
- </select>
- </td>
- </tr>
- <tr class="">
- <td>dojo]控件类型</td>
- <td align="left">
- <select id="dojoInuptType" name="dojoInuptType"
- dojoType="dijit.form.FilteringSelect"
- required="true"
- autocomplete="true">
- <option value="0">--请选择--</option>
- <% ArrayList dojoInuptTypes = XFormModelImpl.getInstance().getDojoInuptTypesByType("textarea");
- for(int m = 0; m<dojoInuptTypes.size(); m++){
- DojoInputTypeImpl DojoInputTypeImpl=(DojoInputTypeImpl)dojoInuptTypes.get(m);
- %>
- <option value="<%=DojoInputTypeImpl.getCode() %>" <%if(DojoInputTypeImpl.getCode().equals(dojoInuptType))out.print("selected");%>><%=DojoInputTypeImpl.getName() %></option>
- <%} %>
- </select>
- </td>
- </tr>
- <tr class="">
- <td>输入最大值</td>
- <td align="left"><input type="text" name="maxlengths" value="<%=maxlengths%>" dojoType="dijit.form.ValidationTextBox"></td>
- </tr>
- </table>
- </div>
- <div class="btmbox">
- <button id="save" dojoType="dijit.form.Button" onClick='console.log("clicked simple"),checkinput()' type="button" iconClass="plusIcon">
- 保存
- </button>
- <span dojoType="dijit.Tooltip" connectId="save">保存按钮</span>
-
- <button id="re" dojoType="dijit.form.Button" onClick='console.log("clicked simple"),document.form1.reset();' iconClass="plusIcon">
- 重置
- </button>
- <span dojoType="dijit.Tooltip" connectId="re">重置按钮</span>
-
- <button id="clo" dojoType="dijit.form.Button" onClick='console.log("clicked simple"),window.close();' type="button" iconClass="plusIcon">
- 关闭
- </button>
- <span dojoType="dijit.Tooltip" connectId="clo">关闭按钮</span>
- </div>
- </div>
- </div>
- </form>
- <br>
- </body>
- </html>
|