sogo/UI/Templates/ContactsUI/UIxContactsListView.wox
Wolfgang Sourdeau 5805814f93 Monotone-Parent: 44e6aeafdbc62fc3b67704ab06af7e89e31b1601
Monotone-Revision: 89f06969439427f2d6456a59082ce9b2c88ee0cc

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-01T20:34:21
Monotone-Branch: ca.inverse.sogo
2006-11-01 20:34:21 +00:00

57 lines
2.2 KiB
XML

<?xml version='1.0' standalone='yes'?>
<var:component
xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"
xmlns:uix="OGo:uix"
xmlns:label="OGo:label"
xmlns:rsrc="OGo:url"
className="UIxContactsListViewContainer"
selectorComponentClass="selectorComponentClass"
title="name">
<table id="contactsList" multiselect="yes">
<tbody>
<tr class="tableview">
<!-- localize -->
<td class="tbtv_headercell">
<var:component className="UIxSortableTableHeader"
label:label="Lastname"
const:sortKey="cn"
const:href="view"
var:queryDictionary="context.request.formValues"
/>
</td>
<td class="tbtv_headercell">
<var:component className="UIxSortableTableHeader"
label:label="EMail"
const:sortKey="mail"
const:href="view"
var:queryDictionary="context.request.formValues"
/>
</td>
<td class="tbtv_headercell">
<var:string label:value="Phone" />
</td>
<td class="tbtv_headercell">
<var:string label:value="Location" />
</td>
</tr>
<var:foreach list="contactInfos" item="currentContact">
<tr class="tableview"
var:id="currentContact.c_name"
var:contactname="displayName"
var:contactid="currentContact.c_uid"
onclick="return onContactRowClick(event, this);"
ondblclick="return onContactRowDblClick(event, this);"
oncontextmenu="return onContactContextMenu(event, this);">
<td onmousedown="return false;"><img rsrc:src="abcard.gif" /><var:string value="displayName" const:escapeHTML="YES" /></td>
<td onmousedown="return false;"><var:string value="currentContact.mail" /></td>
<td onmousedown="return false;"><var:string value="currentContact.telephonenumber" /></td>
<td onmousedown="return false;"><var:string value="currentContact.l" /></td>
</tr>
</var:foreach>
</tbody>
</table>
</var:component>