]> err.no Git - scalable-opengroupware.org/blob - UI/Templates/MailerUI/UIxMailToSelection.wox
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1147 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Templates / MailerUI / UIxMailToSelection.wox
1 <?xml version='1.0' standalone='yes'?>
2   <container xmlns="http://www.w3.org/1999/xhtml"
3     xmlns:var="http://www.skyrix.com/od/binding"
4     xmlns:const="http://www.skyrix.com/od/constant"
5     xmlns:rsrc="OGo:url"
6     xmlns:label="OGo:label"
7     >
8     <script type="text/javascript">
9       var currentIndex = <var:string value="currentIndex" />;
10     </script>
11     <script type="text/javascript" rsrc:src="UIxMailToSelection.js"> <!-- Space! --></script>
12     
13     <div id="addressList"
14       ><var:foreach list="addressLists" item="addressList"
15         ><var:foreach list="addressList" item="address">
16           <div class="addressListElement" var:id="currentRowId">
17             <span class="headerField">
18             <var:popup name="currentPopUpId"
19               list="headers"
20               item="item"
21               label:string="$item"
22               selection="currentHeader"
23               />
24             </span>
25             <span class="headerInput">
26             <input var:id="currentAddressId"
27               var:name="currentAddressId"
28               class="textField"
29               type="text"
30               var:value="address"
31               onfocus="addressFieldGotFocus(this);"
32               onblur="addressFieldLostFocus(this);"
33               />
34             </span>
35           </div>
36         </var:foreach>
37       </var:foreach>
38       <div class="addressListElement" id="lastRow">
39         <span class="headerField">
40         <var:popup name="currentPopUpId"
41               const:disabled="1"
42               list="headers"
43               item="item"
44               label:string="$item"
45               />
46         </span>
47         <span class="headerInput">
48           <input onfocus="fancyAddRow(true,'');"
49             readonly="1"
50             type="text"
51             class="textField" />
52         </span>
53       </div>
54     <!--<var:if condition="isUIxDebugEnabled">
55     <a href="#" onclick="checkAddresses();">check addresses</a>
56   </var:if>-->
57     </div>
58     <span id="addr_addresses" style="display: none; visibility: hidden;"><var:foreach list="addressLists" item="addressList"><var:foreach list="addressList" item="address"><span var:id="address"><!-- Space! --></span></var:foreach></var:foreach></span>
59   </container>
60