sogo/UI/Templates/MailerUI/UIxMailToSelection.wox
Francis Lachapelle 06fd3a0aea Monotone-Parent: e93263338b262449e660e63e963ca0e8fdc1ecb4
Monotone-Revision: 94a466c5a8173924f1c2a2c226a8e65b45001f24

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-11-19T20:36:22
Monotone-Branch: ca.inverse.sogo
2007-11-19 20:36:22 +00:00

63 lines
2.2 KiB
XML

<?xml version='1.0' standalone='yes'?>
<container xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"
xmlns:rsrc="OGo:url"
xmlns:label="OGo:label"
>
<script type="text/javascript">
var currentIndex = <var:string value="currentIndex" />;
</script>
<div class="addressList">
<table id="addressList" cellpadding="0" cellspacing="0"
><tbody
><var:foreach list="addressLists" item="addressList"
><var:foreach list="addressList" item="address">
<tr class="addressListElement" var:id="currentRowId">
<td class="headerField">
<var:popup name="currentPopUpId"
list="headers"
item="item"
label:displayString="$item"
selection="currentHeader"
/>
</td>
<td class="headerInput">
<input var:id="currentAddressId"
var:name="currentAddressId"
class="textField"
type="text"
var:value="address"
onfocus="addressFieldGotFocus(this);"
onblur="addressFieldLostFocus(this);"
/>
</td>
</tr>
</var:foreach>
</var:foreach>
<tr class="addressListElement" id="lastRow">
<td class="headerField" onclick="fancyAddRow(true,'');">
<var:popup name="currentPopUpId"
list="headers"
item="item"
label:displayString="$item"
/>
</td>
<td class="headerInput">
<span class="headerInput"><input onfocus="fancyAddRow(true,'');"
readonly="1"
type="text"
class="textField" /></span>
</td>
</tr>
<!--<var:if condition="isUIxDebugEnabled">
<a href="#" onclick="checkAddresses();">check addresses</a>
</var:if>-->
</tbody>
</table>
</div>
<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>
</container>