sogo/UI/Templates/MailerUI/UIxMailToSelection.wox
Wolfgang Sourdeau 39228fb130 Monotone-Parent: 8566d6fbfa896a774b9907c3125e7b3de87296cd
Monotone-Revision: 2ad8b0c019808014c990f51cc69c4457fdb537c6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-07-28T22:59:11
Monotone-Branch: ca.inverse.sogo
2006-07-28 22:59:11 +00:00

62 lines
2.1 KiB
XML

<?xml version='1.0' standalone='yes'?>
<span 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"
border="0"
width="100%"
>
<script language="JavaScript">
var currentIndex = <var:string value="currentIndex" />;
</script>
<script language="JavaScript" rsrc:src="UIxMailToSelection.js"> <!-- Space! --></script>
<table id="addr_table">
<var:foreach list="addressLists" item="addressList">
<var:foreach list="addressList" item="address">
<tr var:id="currentRowId">
<td>
<var:popup name="currentPopUpId"
list="headers"
item="item"
label:string="$item"
selection="currentHeader"
const:style="width: 100%;"
/>
</td>
<td>
<input var:id="currentAddressId"
var:name="currentAddressId"
type="text"
var:value="address"
onfocus="addressFieldGotFocus(this);"
onblur="addressFieldLostFocus(this);"
style="width: 100%;"
/>
</td>
</tr>
<var:string value="nextId" />
</var:foreach>
</var:foreach>
<tr id="row_last">
<td>
<!-- todo: use stylesheet? -->
<select style="width: 100%;" disabled="1">
<option value="to" ><var:string label:value="to" />:</option>
</select>
</td>
<td>
<!-- todo: use stylesheet? -->
<input onfocus="fancyAddRow(true,'');" type="text"
style="width: 100%;" />
</td>
</tr>
</table>
<!--<var:if condition="isUIxDebugEnabled">
<a href="#" onclick="checkAddresses();">check addresses</a>
</var:if>-->
<span id="addr_addresses" style="visibility: hidden;"><var:foreach list="addressLists" item="addressList"><var:foreach list="addressList" item="address"><span var:id="address" /></var:foreach></var:foreach>
</span>
</span>