See ChangeLog

Monotone-Parent: 23b277d875e5d3edbaacfcbca90a9b0bd961925e
Monotone-Revision: 7d5face94be8209296f29fb4baef4364387ee55a

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-08-12T20:40:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2011-08-12 20:40:02 +00:00
parent 4844179663
commit 39efb34787
3 changed files with 9 additions and 3 deletions
+7
View File
@@ -1,3 +1,10 @@
2011-08-12 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/HTMLElement.js (refreshSelectionByIds):
replaced the call to the Prototype method "down" in favor to a
global access with the element ID. This fixes a multiple-message
selection issue with IE.
2011-08-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreMapping.m
+2 -2
View File
@@ -265,7 +265,8 @@ Element.addMethods({
element = $(element);
if (element.selectedIds) {
for (var i = 0; i < element.selectedIds.length; i++) {
var e = element.down('#'+element.selectedIds[i]);
//var e = element.down('#'+element.selectedIds[i]); // buggy with IE
var e = $(element.selectedIds[i]);
if (e) {
if (!e.hasClassName('_selected'))
e.addClassName('_selected');
@@ -274,7 +275,6 @@ Element.addMethods({
log ("refreshSelectionByIds Error: " + element.tagName
+ " select by ID " + element.selectedIds[i]
+ " not found (" + element.childNodes.length + " children)");
//element.selectedIds.splice(i,1);
}
}
}
-1
View File
@@ -38,7 +38,6 @@ var SOGoDataTableInterface = {
* Handle selection based on rows ID.
*/
this.body.selectRange = function(startIndex, endIndex) {
var element = $(this);
var s;
var e;
var rows;