]> err.no Git - sope/blob - sopex/Samples/WOxExtTest/CheckBoxMatrix.wox
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1201 e4a50df8-12e2-0310-a44c...
[sope] / sopex / Samples / WOxExtTest / CheckBoxMatrix.wox
1 <?xml version='1.0' standalone='yes'?>
2 <var:component className="Frame" title="name"
3            xmlns="http://www.w3.org/1999/xhtml"
4            xmlns:var="http://www.skyrix.com/od/binding"
5            xmlns:const="http://www.skyrix.com/od/constant">
6
7   <form var:action="self">
8     <var:checkbox-matrix list="list" item="item" 
9                          maxColumns="maxColumns"
10                          selections="selections"
11                          horizontal="horizontal">
12        <var:string value="item"/>
13        <a var:action="increaseClicks">increase clicks</a>
14     </var:checkbox-matrix>
15     <br/>
16
17     clicks: <var:string value="clicks"/>
18     <br/>
19
20     <var:string value="selections"/>
21
22     <table border="0">
23        <tr><td></td><td></td></tr>
24        <tr>
25          <td>MaxColumns:</td>
26          <td><input type="text" var:value="maxColumns" size="4"/></td>
27        </tr>
28        <tr>
29          <td>Horizontal:</td>
30          <td><input type="checkbox" var:checked="horizontal"/></td>
31        </tr>
32      </table>
33     <input type="submit" var:action="self" value="apply"/>
34   </form>
35
36 </var:component>