sogo/UI/Templates/SchedulerUI/UIxCalTasksListView.wox
Wolfgang Sourdeau 96a94aab31 Monotone-Parent: e45b2b02d2644ca45f53476d13a648ca71e4e361
Monotone-Revision: 212e168bc4d90ac245e14acdb1fa02cd21689ca4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-04-03T14:24:09
Monotone-Branch: ca.inverse.sogo
2007-04-03 14:24:09 +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="shouldShowCompletedTasks"
type="checkbox"
onclick="return onShowCompletedTasks(this);"
/><var:string label:value="Show 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>