mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-22 06:42:44 +00:00
Monotone-Parent: 0fe240e59b53ed43169486029f2d23d953547489
Monotone-Revision: 9a9be506022799b03e23c40687bc9fecefe328a9 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-08-30T23:08:15 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -5,26 +5,36 @@
|
||||
xmlns:const="http://www.skyrix.com/od/constant"
|
||||
xmlns:rsrc="OGo:url"
|
||||
>
|
||||
<table cellpadding="0" cellspacing="2">
|
||||
<tr>
|
||||
<var:if condition="displayTimeControl">
|
||||
<td>
|
||||
<var:component className="UIxTimeSelector"
|
||||
timeID="timeID"
|
||||
hour="hour"
|
||||
minute="minute"
|
||||
/>
|
||||
</td>
|
||||
</var:if>
|
||||
<td>
|
||||
<var:component className="UIxDatePicker"
|
||||
dateID="dateID"
|
||||
year="year"
|
||||
month="month"
|
||||
day="day"
|
||||
label="label"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<var:component className="UIxDatePicker"
|
||||
dateID="dateID"
|
||||
year="year"
|
||||
month="month"
|
||||
day="day"
|
||||
label="label"
|
||||
/>
|
||||
<var:if condition="displayTimeControl">
|
||||
<select var:name="hourSelectId">
|
||||
<var:foreach list="selectableHours" item="hourOption"
|
||||
><var:if condition="isCurrentHour"
|
||||
><option var:value="hourValue" selected="selected"
|
||||
><var:string value="hourLabel"
|
||||
/></option></var:if
|
||||
><var:if condition="isCurrentHour" const:negate="YES"
|
||||
><option var:value="hourValue"><var:string value="hourLabel"
|
||||
/></option></var:if>
|
||||
</var:foreach
|
||||
></select>
|
||||
<select var:name="minuteSelectId">
|
||||
<var:foreach list="selectableMinutes" item="minuteOption"
|
||||
><var:if condition="isCurrentMinute"
|
||||
><option var:value="minuteValue" selected="selected"
|
||||
><var:string value="minuteLabel"
|
||||
/></option></var:if
|
||||
><var:if condition="isCurrentMinute" const:negate="YES"
|
||||
><option var:value="minuteValue"
|
||||
><var:string value="minuteLabel"
|
||||
/></option></var:if>
|
||||
</var:foreach
|
||||
></select>
|
||||
</var:if>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user