Monotone-Parent: 5f136163cb35bf4d930f90a158464f4eb5e1d55e

Monotone-Revision: 8e7341cf427eb43d33db308380a8799e98fb9d93

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-06-02T19:01:58
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
C Robert 2009-06-02 19:01:58 +00:00
parent 475dec16d0
commit 249ac42896
3 changed files with 12 additions and 5 deletions

View File

@ -10,6 +10,8 @@
* SoObjects/Appointments/SOGoAppointmentFolder.m (_enforceTimeLimitOnFilter):
Rewrote algorithm, fixed cyclic events issue.
* UI/WebServerResources/UIxAttendeesEditor.js: Fixed update bug on "enter"
* UI/Templates/SchedulerUI/UIxAttendeesEditor.wox: Removed next/prev hour buttons
2009-06-02 Ludovic Marcotte <lmarcotte@inverse.ca>

View File

@ -93,12 +93,12 @@
><var:string label:value="No free-busy information" /></li>
</ul>
</div>
<div id="freeBusyButtons">
<!--<div id="freeBusyButtons">
<a href="#" class="button _disabled"
><var:string label:value="Previous hour" /></a>
<a href="#" class="button _disabled"
><var:string label:value="Next hour" /></a>
</div>
</div>-->
<div id="freeBusyReplicas">
<div><var:string label:value="Start:"
/><var:component className="UIxTimeDateControl"

View File

@ -60,12 +60,16 @@ function onContactKeydown(event) {
preventDefault(event);
if (this.confirmedValue)
this.value = this.confirmedValue;
if (this.uid)
this.blur(); // triggers checkAttendee function call
$(this).selectText(0, this.value.length);
if (document.currentPopupMenu)
hideMenu(document.currentPopupMenu);
attendeesEditor.selectedIndex = -1;
if (this.uid) {
this.hasfreebusy = false;
this.setAttribute ("modified", "1");
this.blur(); // triggers checkAttendee function call
}
}
else if ($('attendeesMenu').getStyle('visibility') == 'visible') {
attendeesEditor.currentField = this;
@ -449,9 +453,10 @@ function initializeWindowButtons() {
buttons = $("freeBusyZoomButtons").childNodesWithTag("a");
for (var i = 0; i < buttons.length; i++)
buttons[i].observe("click", listRowMouseDownHandler, false);
buttons = $("freeBusyButtons").childNodesWithTag("a");
/* buttons = $("freeBusyButtons").childNodesWithTag("a");
for (var i = 0; i < buttons.length; i++)
buttons[i].observe("click", listRowMouseDownHandler, false);
*/
}
function onEditorOkClick(event) {