12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.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>Untitle</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <treetest>
- <list>
- <level>1</level>
- <name>학교1</name>
- <code>001</code>
- </list>
- <list>
- <level>2</level>
- <name>학교2</name>
- <code>002</code>
- </list>
- <list>
- <level>3</level>
- <name>학교3</name>
- <code>003</code>
- </list>
- <list>
- <level>3</level>
- <name>학교3</name>
- <code>003</code>
- </list>
- <list>
- <level>1</level>
- <name>학교11</name>
- <code>011</code>
- </list>
- <list>
- <level>2</level>
- <name>학교22</name>
- <code>022</code>
- </list>
- <list>
- <level>2</level>
- <name>학교22</name>
- <code>022</code>
- </list>
- </treetest>
- </main>
- <option1/>
- </root>
- </instance>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- </xhtml:head>
- <xhtml:body>
- <select1 id="radio1" ref="/root/option1" overflow="visible" scroll="auto" appearance="full" direction="acrossdown" style="left:480px; top:90px; width:100px; height:320px; border-style:none; ">
- <choices>
- <item>
- <label>옵션 0</label>
- <value>0</value>
- </item>
- <item>
- <label>옵션 1</label>
- <value>1</value>
- </item>
- <item>
- <label>옵션 2</label>
- <value>2</value>
- </item>
- <item>
- <label>옵션 3</label>
- <value>3</value>
- </item>
- <item>
- <label>옵션 4</label>
- <value>4</value>
- </item>
- <item>
- <label>옵션 5</label>
- <value>5</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- setTree(datagrid1, 0, 1, false, model.getValue("/root/option1"));
- model.refresh();
- ]]>
- </script>
- </select1>
- <datagrid id="datagrid1" nodeset="/root/main/treetest/list" caption="caption1^caption2^caption3" colsep="^" colwidth="100, 156, 100" mergecellsfixedrows="bycolrec" rowsep="|" style="left:50px; top:85px; width:415px; height:415px; ">
- <col ref="level"/>
- <col ref="name"/>
- <col ref="code"/>
- </datagrid>
- <caption id="caption1" style="left:60px; top:30px; width:532px; height:20px; ">common.js 의 setTree() 함수의 5번째 인자값 테스트 : 0 에서 5까지 인자값에 따라 형태가 바뀐다.</caption>
- </xhtml:body>
- </xhtml:html>
|