| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet href="../../css/body.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>轧辊号选择</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <radioData/>
- <storeValue/>
- <inputValue/>
- <resData/>
- <reqData/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- //获得所有的轧辊号信息
- model.removenode("/root/reqData");
- model.makeNode("/root/reqData");
-
- //传入需要的条件
- commSubmit("UIH040050-service","init","glueAction.do");
- //把返回的Roll_No结果接点帮定到相应的
- model1.duplicate("/root/radioData","/root/resData/RollNoList_VO");
-
- model.refresh();
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../js/boaMsg.js"/>
- <script type="javascript" src="../../js/boaCommon.js"/>
- </xhtml:head>
- <xhtml:body pagewidth="400" pageheight="400">
- <select1 id="radio1" ref="/root/storeValue" appearance="full" overflow="visible" style="left:20px; top:50px; width:330px; height:340px; border-style:none; ">
- <choices>
- <itemset nodeset="/root/radioData/RollNoList_VO/RollNoList_Row">
- <label ref="LABEL"/>
- <value ref="VALUE"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var radioValue = radio1.value;
- model.setValue("/root/inputValue",radioValue);
- model.refresh();
- ]]>
- </script>
- </select1>
- <caption id="caption2" class="cell" style="left:120px; top:15px; width:140px; height:23px; "/>
- <input id="input1" ref="/root/inputValue" style="left:122px; top:18px; width:136px; height:17px; "/>
- <caption id="caption3" class="cell" style="left:20px; top:15px; width:100px; height:23px; ">请选择轧辊号</caption>
- <button id="button2" style="left:265px; top:18px; width:85px; height:20px; background-image:..\..\images\保存.GIF; ">
- <caption>确定</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var inputValue = input1.value;
- var opp1 = window.opener;
- opp1.model.setValue("/root/formData/ROLL_NO",inputValue);
- opp1.model.refresh();
- window.close();
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|