1. win32lib listview suggestions
- Posted by 10963508 at europeonline.com Jul 21, 2002
- 435 views
Hi, I have two sugestions for listviews which are really needed: - Natural sort, 1,3,20 and not 1,20,3 - Show ^ sign in column header if it's sorted ascending and opposite sign if its sorted descending, like in windows files explorer. that's all for now :)
2. Re: win32lib listview suggestions
- Posted by Derek Parnell <ddparnell at bigpond.com> Jul 21, 2002
- 422 views
----- Original Message ----- From: <10963508 at europeonline.com> To: "EUforum" <EUforum at topica.com> Subject: win32lib listview suggestions > > Hi, > I have two sugestions for listviews which are really needed: > > - Natural sort, 1,3,20 and not 1,20,3 This is already catered for. You can tell win32lib, which columns contain numbers and thus it sorts the column correctly. > - Show ^ sign in column header if it's sorted ascending and opposite sign if > its sorted descending, like in windows files explorer. I've thought about this and done a little research on it. It doesn't seem to be simple however it still might show up one day. It is not a high priority yet. ----------- Derek.
3. Re: win32lib listview suggestions
- Posted by 10963508 at europeonline.com Jul 21, 2002
- 411 views
----- Original Message ----- From: "Derek Parnell" <ddparnell at bigpond.com> > > - Natural sort, 1,3,20 and not 1,20,3 > > This is already catered for. You can tell win32lib, which columns contain > numbers and thus it sorts the column correctly. I use it now, but it's slow beyond being usable. I know this discussion went on before but what do I need to do to speed it up? I have about 60 items in listview and it takes about 3 seconds to sort those numbers. This needs to be fixed in Win32Lib in my opinion, it should be fast by default. One more problem: after I inserted items into listview they are not sorted. What function do I need to call to sort items of specified column, not first but some other column? like in windows file explorer, you click on column header and then that column is sorted that way when you click on different folders.