sogo/UI/Templates/SchedulerUI/UIxCalTasksListView.wox
Wolfgang Sourdeau 89659897ef Monotone-Parent: 4945bac92c07f3415fdb724d05d69bdbf029c39d
Monotone-Revision: eab1666fe69cee8d23192a1c3ce06a584278bb13

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-13T22:31:41
Monotone-Branch: ca.inverse.sogo
2006-11-13 22:31:41 +00:00

33 lines
1.3 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">
<h2><var:string label:value="Tasks" /></h2>
<label><input class="checkBox"
var:checked="shouldHideCompletedTasks"
type="checkbox"
onclick="return onHideCompletedTasks(this);"
/><var:string label:value="Hide completed tasks"
/></label>
<ul id="tasksList" multiselect="yes">
<var:foreach list="fetchCoreTasksInfos" item="currentTask"
><var:if condition="shouldDisplayCurrentTask"
><li var:id="currentTask.c_name"
var:owner="currentTask.owner"
var:class="currentStatusClass"
onmousedown="return false;"
onclick="return onRowClick(event);"
ondblclick="return editDoubleClickedEvent(this);"
><input class="checkBox"
var:checked="isCurrentTaskCompleted"
type="checkbox"
onchange="return updateTaskStatus(this);"
/><var:string value="currentTask.title" const:escapeHTML="NO"
/></li></var:if>
</var:foreach>
</ul>
</container>