Page 2 of 3
Re: Show in groups
Posted: 18 Jun 2013 12:45
by Stef123
Like I said above, for the task at hand I am fine with "Alternate Groups"
Cannot tell you what else I might need it for. "Show in groups" has been my default setting (within Details view) for such a long time (Windows and 3rd party) - I have no idea what other comforts I'll be missing without it. Have to wait until other problems come up, then ask again for work-arounds.
Re: Show in groups
Posted: 18 Jun 2013 13:01
by admin
I assume you know the "Type Stats and Filter" button on the toolbar?
Re: Show in groups
Posted: 18 Jun 2013 13:34
by Stef123
Bingo. I bet you're great at playing poker? Raising the stakes and bluffing and introducing red herrings only to sweep the table in the end.
This doesn't make my wish for "Show in groups" obsolete (I challenge everyone to spot files faster with any other view) but it definitely solves the task I have been asking for - perfect.
If only the font were larger. Tahoma 8 on a Full HD Monitor
Any reason for locking it down and not making it custumizable?
Re: Show in groups
Posted: 18 Jun 2013 13:46
by admin
The menu font can be customized system-wide in Windows display settings.
And a tip for "Type Stats and Filter": Hold CTRL when you select an item from that menu to select the files (instead of filtering them).
Re: Show in groups
Posted: 18 Jun 2013 15:38
by Stef123
admin wrote:The menu font can be customized system-wide in Windows display settings.
I was afraid you'd say this. Was hoping XY's dropdowns would be configurable independent from general Windows menus which I hate to blow up for all applications. What's this setting for: Configuration > Tools > Dialogs. Offers me to change the font but not the size
Thanks for the Ctrl tip - good to know.
Unfortunately something else is bugging me now: After stepping through Type Stats it replaced all my Visual Filters -they've all moved out of reach in the Visual Filter Button dropdown. How do I make them sticky? I tried varations of -----> mru (for the address bar) but no luck so far.
Re: Show in groups
Posted: 18 Jun 2013 20:37
by admin
Stef123 wrote:admin wrote:The menu font can be customized system-wide in Windows display settings.
I was afraid you'd say this. Was hoping XY's dropdowns would be configurable independent from general Windows menus which I hate to blow up for all applications. What's this setting for: Configuration > Tools > Dialogs. Offers me to change the font but not the size
Thanks for the Ctrl tip - good to know.
Unfortunately something else is bugging me now: After stepping through Type Stats it replaced all my Visual Filters -they've all moved out of reach in the Visual Filter Button dropdown. How do I make them sticky? I tried varations of -----> mru (for the address bar) but no luck so far.
1. Cannot offer size since layouts would break.
2. Oh yes, thanks for the hint. I will stop this.
Re: Show in groups
Posted: 19 Jun 2013 11:24
by Stef123
admin wrote:2. Oh yes, thanks for the hint. I will stop this.
Thank you.
Re: Show in groups
Posted: 20 Nov 2013 08:23
by autocart
Maybe something like this (see picture) is easier to implement (I don't know, but would be nice for my eyes and brain):
And in combination with custom groups (
http://www.xyplorer.com/xyfc/viewtopic.php?f=5&t=10366) it would be even more awesome - just in case.
(I just found out about the dupes column in the find-dupes-search-results (
http://www.xyplorer.com/images/whatsnew/DupesByName.png). This seems to me to be similar.)
Re: Show in groups
Posted: 20 Mar 2014 09:12
by autocart
Hi all,
With the new Custom Columns I finally found a very close solution.
It only "works" as grouping for extension (can not be changed without changing the code), therefore it is rather a proof of concept.
The only other little limitation is in formatting: I did not find a way of how to
ensure that the grouping-string (in this example the extension) will definitely be shown at the
first group-item. It might be shown anywhere in the group.
An example of how it looks like is in the 1st picture (pay attention to the far left column).
BTW, folders will have a "DIR" in the grouping column. If you don't like this, then just exchange "DIR" in the code with " " (a quoted space).
How to do it:
Show a custom column and configure it. In the configure window (see 2nd attached picture) set:
In "Caption" whatever you like,
"Type" as "Script",
"Format" as "Text",
"Item type" as "Files and Folders",
"Item filter" empty
and in the "Script" box paste the following code:
Code: Select all
perm $grouping_extensions_used;
if (get("CountItems") == 1) {
$grouping_extensions_used = "";
}
$current_ext = getpathcomponent(<cc_item>,"ext");
if (<cc_isfolder>) {
$current_ext = "DIR";
}
if (strpos($grouping_extensions_used, $current_ext . "|") >= 0) {
return "";
}
else {
$grouping_extensions_used = $grouping_extensions_used . $current_ext . "|";
return $current_ext;
}
.
Re: Show in groups
Posted: 20 Mar 2014 09:16
by admin
Nice!
Note that there is also <cc_isfolder>, so you don't need to check for folder yourself.
Re: Show in groups
Posted: 20 Mar 2014 09:28
by autocart
Hi Don,
Thx for the acknowledgement and the hint. I aleady changed the code above.
BTW, with the extentions of custom columns I think XY is really the best file explorer in the world now. But please don't stop improving even further, XY needs to stay on top

Re: Show in groups
Posted: 20 Mar 2014 09:50
by admin
No problem, I'm just starting...

Re: Show in groups
Posted: 20 Mar 2014 11:37
by autocart
I was trying to add dynamic behaviour to the custom column on change of the sorting column.
I had to realize that I don't know how to make the custom column update on change of sorting.
Is there a way how it can be done?
Re: Show in groups
Posted: 20 Mar 2014 13:56
by autocart
updated the code:
doc and docx could have been treated as the same extension. Fixed.
Re: Show in groups
Posted: 20 Mar 2014 14:57
by admin
autocart wrote:I was trying to add dynamic behaviour to the custom column on change of the sorting column.
I had to realize that I don't know how to make the custom column update on change of sorting.
Is there a way how it can be done?
Not yet. Might add something later.