]> err.no Git - sope/blob - sopex/Samples/WOxExtTest/ShiftClick.wox
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1201 e4a50df8-12e2-0310-a44c...
[sope] / sopex / Samples / WOxExtTest / ShiftClick.wox
1 <?xml version='1.0' standalone='yes'?>
2
3 <var:component className="Frame" title="name" 
4            xmlns="http://www.w3.org/1999/xhtml"
5            xmlns:var="http://www.skyrix.com/od/binding"
6            xmlns:const="http://www.skyrix.com/od/constant">
7   
8   <var:js-shiftclick scriptName="scriptName"/>
9   
10   <form var:action="self">
11     <var:for-each list="items" item="item" index="index">
12       <input type="checkbox" 
13              var:checked="isChecked" 
14              var:value="index" 
15              var:onClick="scriptCall"/>
16       <var:string value="item"/>
17       <br/>
18     </var:for-each>
19     
20     <input type="submit" const:value="apply"/>
21   </form>
22   
23 </var:component>