]> err.no Git - scalable-opengroupware.org/blob - UI/Templates/MailerUI/UIxMailToSelection.wox
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1034 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     <script type="text/javascript" rsrc:src="layout2or3_xlib.js"> <!-- Space! --></script>
13     
14     <div id="addressList"
15       ><var:foreach list="addressLists" item="addressList"
16         ><var:foreach list="addressList" item="address">
17           <div class="addressListElement" var:id="currentRowId">
18             <span class="headerField">
19             <var:popup name="currentPopUpId"
20               list="headers"
21               item="item"
22               label:string="$item"
23               selection="currentHeader"
24               />
25             </span>
26             <span class="headerInput">
27             <input var:id="currentAddressId"
28               var:name="currentAddressId"
29               class="textField"
30               type="text"
31               var:value="address"
32               onfocus="addressFieldGotFocus(this);"
33               onblur="addressFieldLostFocus(this);"
34               />
35             </span>
36           </div>
37         </var:foreach>
38       </var:foreach>
39       <div class="addressListElement" id="lastRow">
40         <span class="headerField">
41           <select disabled="1">
42             <option value="to"><var:string label:value="to" />:</option>
43           </select>
44         </span>
45         <span class="headerInput">
46           <input onfocus="fancyAddRow(true,'');"
47             readonly="1"
48             type="text"
49             class="textField" />
50         </span>
51       </div>
52     <!--<var:if condition="isUIxDebugEnabled">
53     <a href="#" onclick="checkAddresses();">check addresses</a>
54   </var:if>-->
55     </div>
56     <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" /></var:foreach></var:foreach>
57     </span>
58   </container>
59