Sort order of accounts in Navigation panel [Deleted]

Money Manager Ex Development related posts for both Android and Desktop

Moderator: Renato

Nikolay
Developer
Posts: 1535
Joined: Sat Dec 06, 2008 2:27 pm
Are you a spam bot?: No
Location: Sankt-Petersburg, Russia

Sort order of accounts in Navigation panel [Deleted]

Post by Nikolay »

Hi


The algorithm by which to sort the accounts in the navigation bar in the current version is:

Code: Select all

select ACCOUNTNAME, STATUS, FAVORITEACCT from ACCOUNTLIST_V1 order by ACCOUNTNAME;
I propose to extend it:

Code: Select all

select ACCOUNTNAME, STATUS, FAVORITEACCT from ACCOUNTLIST_V1 order by STATUS desc, FAVORITEACCT desc, ACCOUNTNAME;
Now the bills are displayed as follows:
First, open and favorite, then others are open, then closed and favorite and finally closed not favorite.

Patch uploaded

Link to Feature request: http://www.codelathe.com/forum/viewtopic.php?f=8&t=578
You do not have the required permissions to view the files attached to this post.
madhan
Site Admin
Posts: 99
Joined: Sun Nov 30, 2008 8:06 pm

Re: Sort order of accounts in Navigation panel

Post by madhan »

Thanks! Patch checked in version 398
Nikolay
Developer
Posts: 1535
Joined: Sat Dec 06, 2008 2:27 pm
Are you a spam bot?: No
Location: Sankt-Petersburg, Russia

Re: [ADDED] Sort order of accounts in Navigation panel

Post by Nikolay »

Hi,

New idea. Favorite account check box has been removed. The "Sequence" text box is inserted instead.
Is anybody can try it? Do you like it?
You do not have the required permissions to view the files attached to this post.
Nikolay
Developer
Posts: 1535
Joined: Sat Dec 06, 2008 2:27 pm
Are you a spam bot?: No
Location: Sankt-Petersburg, Russia

Re: Sort order of accounts in Navigation panel [Added]

Post by Nikolay »

svn 673