sogo/UI/Templates/SchedulerUI/UIxCalTasksListView.wox
Wolfgang Sourdeau de02251e69 Monotone-Parent: f4e46f4fdff68852706c529d4cdff8b4e064c648
Monotone-Revision: 63ef91fbc44c18eb342997f61dccacbaf30852b2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-12T21:04:21
Monotone-Branch: ca.inverse.sogo
2006-10-12 21:04:21 +00:00

34 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>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"
onselectionchange="onTasksSelectionChange();"
multiselect="yes">
<var:foreach list="fetchCoreTasksInfos" item="currentTask"
><var:if condition="shouldDisplayCurrentTask"
><li var:id="currentTask.c_name"
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>