]> err.no Git - sope/blob - sope-appserver/samples/WOxExtTest/DictionaryRepetition.wox
include config.make in makefiles
[sope] / sope-appserver / samples / WOxExtTest / DictionaryRepetition.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     <table border="0">
9
10       <var:foreach-key dictionary="dictionary" key="key" item="item">
11          <tr>
12            <td align="right"><var:string value="key"/></td>
13            <td><input type="text" var:value="item" const:size="30"/></td>
14            <td><a var:action="increaseClicks">increase clicks</a></td>
15          </tr>
16       </var:foreach-key>
17       
18       <tr><td colspan="2">
19         <input type="submit" var:action="clearClicks" value="apply"/>
20       </td></tr>
21     </table>
22     
23     <br/>
24     clicks: <var:string value="clicks"/>
25
26   </form>
27
28 </var:component>