]> err.no Git - scalable-opengroupware.org/blob - SOGo/UI/Anais/AnaisAttendeeSelector.wox
471a88e204365634c3e830da3e1572e0d16a5b71
[scalable-opengroupware.org] / SOGo / UI / Anais / AnaisAttendeeSelector.wox
1 <?xml version='1.0' standalone='yes'?>
2 <span
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   xmlns:rsrc="OGo:url"
7   class="aptview_text"
8 >
9   <script language="JavaScript">
10     <var:string value="jsCode" const:escapeHTML="NO" />
11   </script>
12   <var:component className="AnaisSelector"
13                  label:title="Search in Anais"
14                  var:windowId="windowId"
15                  var:division="division"
16                  var:callback="callbackName" />
17   <hr />
18   <table var:id="tableId">
19     <var:if condition="showDefaultAttendees">
20       <tr>
21         <td><input type="checkbox"
22                    checked="YES"
23                    var:value="combinedCNAndEmailForUser"
24                    var:id="emailForUser"
25                    var:name="checkboxId"
26              /></td>
27         <td><var:string value="cnForUser" /></td>
28       </tr>
29     </var:if>
30
31     <var:foreach list="attendees" item="attendee">
32       <tr>
33         <var:if condition="withCN">
34           <td><input type="checkbox"
35                      checked="YES"
36                      var:value="combinedCNAndEmail"
37                      var:id="attendee.rfc822Email"
38                      var:name="checkboxId"
39               /></td>
40         </var:if>
41
42         <var:if condition="withCN" const:negate="YES">
43           <td><input type="checkbox"
44                      checked="YES"
45                      var:value="attendee.rfc822Email"
46                      var:id="attendee.rfc822Email"
47                      var:name="checkboxId"
48               /></td>
49         </var:if>
50
51         <td><var:string value="attendee.cnForDisplay" /></td>
52       </tr>
53     </var:foreach>
54   </table>
55 </span>