mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
See ChangeLog
Monotone-Parent: ede90c4ec21ca642e49b4287679877bd02717ed6 Monotone-Revision: ae2c5342363a3fa87101fa6840e1c1e1f7a819c0 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-06-01T21:10:25 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -57,9 +57,9 @@ var SOGoDataTableInterface = {
|
||||
s = startIndex;
|
||||
e = endIndex;
|
||||
}
|
||||
|
||||
|
||||
while (s <= e) {
|
||||
uid = "row_" + div.dataSource.uids[s];
|
||||
uid = "row_" + div.dataSource.uidAtIndex(s);
|
||||
if (this.selectedIds.indexOf(uid) < 0)
|
||||
this.selectedIds.push(uid);
|
||||
s++;
|
||||
@@ -71,7 +71,7 @@ var SOGoDataTableInterface = {
|
||||
var div = this.up('div');
|
||||
this.selectedIds = new Array();
|
||||
for (var i = 0; i < div.dataSource.uids.length; i++)
|
||||
this.selectedIds.push("row_" + div.dataSource.uids[i]);
|
||||
this.selectedIds.push("row_" + div.dataSource.uidAtIndex(i));
|
||||
this.refreshSelectionByIds();
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user