| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?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>
- <item>
- <label>J81-12345A</label>
- <value>J81-12345A</value>
- </item>
- <item>
- <label>J81-12346A</label>
- <value>J81-12346A</value>
- </item>
- <item>
- <label>J81-12347A</label>
- <value>J81-12347A</value>
- </item>
- <item>
- <label>J81-23125B</label>
- <value>J81-23125B</value>
- </item>
- <item>
- <label>J81-25635B</label>
- <value>J81-25635B</value>
- </item>
- </radioData>
- <storeValue/>
- <inputValue/>
- </root>
- </instance>
- </model>
- </xhtml:head>
- <xhtml:body pagewidth="400" pageheight="400">
- <select1 id="radio1" ref="/root/storeValue" appearance="full" overflow="visible" style="left:20px; top:50px; width:355px; height:240px; border-style:none; ">
- <choices>
- <itemset nodeset="/root/radioData/item">
- <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();
- //var opp = window.opener;
- //opp.model.setValue("/root/formData/CHARGE_NO",radioValue);
- //opp.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/CHARGE_NO",inputValue);
- opp1.model.refresh();
- window.close();
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|