Closed
Bug 142148
Opened 24 years ago
Closed 23 years ago
Sidebar Address Book, sort widget remains in descending order
Categories
(SeaMonkey :: MailNews: Address Book & Contacts, defect)
SeaMonkey
MailNews: Address Book & Contacts
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: nbaca, Assigned: shliang)
Details
(Whiteboard: [adt2])
Attachments
(1 file, 1 obsolete file)
|
665 bytes,
patch
|
sspitzer
:
review+
sspitzer
:
superreview+
asa
:
approval1.3+
|
Details | Diff | Splinter Review |
Branch build 2002-05-03: WinMe, Mac 10.1.3, Linux RH 7.1
Overview: In the Sidebar Address Book select the Name column and the sort widget
changes from ascending to descending order and remains in the descending state.
Steps to reproduce:
1. Open a profile that has address book entries
2. Add the Address Book to the Sidebar
3. Select the Name column and it should change the sort
4. Select the Name column multiple times to change the sort order
Actual Results: The cards are resorted but the sort widget remains in descending
order.
Expected Results: The directin of the widget should reflect the actual state of
the cards
| Reporter | ||
Comment 1•24 years ago
|
||
Marking nsbeta1 for RTM consideration even though I realize that this is
probably a low priority. It would be nice for the widget to reflect the actual
sort order of the cards.
Keywords: nsbeta1
| Reporter | ||
Comment 3•23 years ago
|
||
Marking nsbeta1 so that the Sidebar AB widgets reflect the true
ascending/descending state.
Comment 5•23 years ago
|
||
Mail triage team: nsbeta1+/adt2
Attachment #113609 -
Flags: superreview?(sspitzer)
Attachment #113609 -
Flags: review?(cavin)
Comment 9•23 years ago
|
||
Comment on attachment 113609 [details] [diff] [review]
patch
r=cavin.
Attachment #113609 -
Flags: review?(cavin) → review+
Comment 10•23 years ago
|
||
Comment on attachment 113609 [details] [diff] [review]
patch
the id of "addressbookList" is used by both the addressbook sidebar panel and
the tree in the select addresses dialog. (the one you get from the compose
window if you hit the "Address" toolbar button)
it looks like that dialog has the same bug as the addressbook sidebar panel.
from abCommon.js:
function InitCommonJS()
{
dirTree = document.getElementById("dirTree");
abList = document.getElementById("addressbookList");
gAbResultsTree = document.getElementById('abResultsTree');
}
Can you just do:
- if (dirTree && gAbView) {
+ if ((dirTree || abList) && gAbView) {
while your fix would work, this removes the extra call to getElementById().
Can you verify that it fixes both the sidebar panel and the select addresses
dialog?
(you should look for this bug on the select addresses dialog and take it, as
you'll be fixing it, too.)
Attachment #113609 -
Flags: superreview?(sspitzer) → superreview-
| Assignee | ||
Comment 11•23 years ago
|
||
Attachment #113609 -
Attachment is obsolete: true
| Assignee | ||
Comment 12•23 years ago
|
||
and it does fix both the sidebar panel and select addresses dialog
Attachment #114291 -
Flags: superreview?(sspitzer)
Comment 13•23 years ago
|
||
Comment on attachment 114291 [details] [diff] [review]
changing to abList
r/sr=sspitzer
nice work.
asking for 1.3 final approval on shuehan's behalf.
shuehan, before you check in, could you add a comment to this code indicating
why we need to check both dirTree and abList?
Attachment #114291 -
Flags: superreview?(sspitzer)
Attachment #114291 -
Flags: superreview+
Attachment #114291 -
Flags: review+
Attachment #114291 -
Flags: approval1.3?
Comment 14•23 years ago
|
||
Comment on attachment 114291 [details] [diff] [review]
changing to abList
a=asa (on behalf of drivers) for checkin to 1.3 final.
Attachment #114291 -
Flags: approval1.3? → approval1.3+
| Assignee | ||
Comment 15•23 years ago
|
||
marking fixed.
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 16•23 years ago
|
||
Trunk build 2003-03-03: WinXP, Linux RH 8, Mac 10.1.5
Verified Fixed.
Note: Could only check the Sidebar Address Book in the Browser since it is no
longer available in any Mail component.
Status: RESOLVED → VERIFIED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•