| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet href="D:/glue/workspace1/xgmes3/WebContents/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="">
- <OutType/>
- </root>
- </instance>
- </model>
- <script type="javascript">
- <![CDATA[
- var ope = window.opener;//父窗口
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="450" pageheight="200">
- <select1 id="radio1" ref="/root/OutType" appearance="full" cellspacing="15" cols="4" overflow="visible" style="left:10px; top:35px; width:180px; height:25px; font-size:12pt; font-weight:bold; color:#333300; border-color:#800000; border-style:solid; ">
- <choices>
- <item>
- <label>Excel</label>
- <value>xls</value>
- </item>
- <item>
- <label>Xml</label>
- <value>xml</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- ope.input_outType.value = radio1.value;
- window.close();
- ]]>
- </script>
- </select1>
- <caption id="caption3" style="left:10px; top:10px; width:110px; height:20px; font-family:宋体; text-align:center; vertical-align:middle; background-color:#ffcc99; ">请选择导出类型:</caption>
- <button id="button1" style="left:10px; top:100px; width:80px; height:20px; background-color:#e4ecf5; border-color:#000000; border-style:solid;">
- <caption>关闭</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- ope.input_outType.value = '';
- window.close();
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|