sogo/UI/Templates/SchedulerUI/UIxCalAptListView.wox
Wolfgang Sourdeau 090922b5c8 Monotone-Parent: da0a2b05c8ede0136a005fb851ab8aeca28db434
Monotone-Revision: f94575e24f735b3541a3c460e3f1323681690f29

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-18T22:42:53
Monotone-Branch: ca.inverse.sogo
2006-08-18 22:42:53 +00:00

59 lines
2.1 KiB
XML

<?xml version="1.0" standalone="yes"?>
<table
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"
id="appointmentsList"
multiselect="yes"
onselectionchange="onAppointmentsSelectionChange();"
>
<tr class="tableview"
><td class="tbtv_headercell tbtv_subject_headercell"
><var:component className="UIxSortableTableHeader"
label:label="Title"
const:sortKey="Title"
const:href="aptlist"
var:queryDictionary="context.request.formValues"
/></td
><td class="tbtv_headercell"
><var:component className="UIxSortableTableHeader"
label:label="Start"
const:sortKey="Start"
const:href="aptlist"
var:queryDictionary="context.request.formValues"
/></td
><td class="tbtv_headercell"
><var:component className="UIxSortableTableHeader"
label:label="End"
const:sortKey="End"
const:href="aptlist"
var:queryDictionary="context.request.formValues"
/></td
><td class="tbtv_headercell"
><var:component className="UIxSortableTableHeader"
label:label="Location"
const:sortKey="Location"
const:href="aptlist"
var:queryDictionary="context.request.formValues"
/></td
></tr>
<var:foreach list="fetchCoreInfos" item="currentAppointment"
><tr class="tableview"
var:id="currentAppointment.uid"
onclick="return onRowClick(event);"
oncontextmenu="return onAppointmentContextMenu(event, this);"
><td onmousedown="return false;"
><var:string value="currentAppointment.title"/></td
><td onmousedown="return false;"
><var:string value="currentStartTime"/></td
><td onmousedown="return false;"
><var:string value="currentEndTime"/></td
><td onmousedown="return false;"
><var:string value="currentLocation"/></td
></tr
></var:foreach>
</table>