Object subclass: #TTT
instanceVariableNames: 'col'
classVariableNames: ''
category: 'ZZZ'
and
TTT>>#initialize
col := OrderedCollection new addAll: (1 to: 10); yourself
If I inspect "TTT new" I get
With the intention to examine the elements of the collection I unfold (1) the col
So instead of the elements I get the internal representation of OrderedCollection. Clicking array (2)
I get a new column with the representation of array (same as on the left side). And here Clement is right because it would be helpful to see the elements in the right column. By clicking the "10 items" tab (3) and then an element (4) I can see the content of that.
So what I wanted to say is that I found it a lot of clicks necessary to get the information I want. I see it is a raw view and from that POV everything seems right.
Coming from the old tools it is not a point of getting used to it or not. This raw view is not an improvement over the old it is a completely different view. As Ben sad it might good to think about providing a view compatible with the old explorer view (fast drill down). Having that view be a default could be left to the user as it could be a setting.
Does that makes sense?
Norbert
P.S.: Are the miller columns configurable. I want to play with amount of columns. Until now I preferred three columns if space is available. Any pointers to that would be great.