sogo/UI/Templates/SchedulerUI/UIxCalTasksListView.wox
Wolfgang Sourdeau ca17b725e3 Monotone-Parent: c3158529cb4ab65ea318a0f12e4853921d68d6ed
Monotone-Revision: 14ebfcc1f4e78b3902b626a981e94b632fd2a92e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-23T14:57:42
Monotone-Branch: ca.inverse.sogo
2006-10-23 14:57:42 +00:00

35 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"
onselectionchange="onTasksSelectionChange();"
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>