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