About table, I have an example which will be running soon in Pharo (the changes are waiting to be integrated) tree := TreeModel new. tree openWithSpec. tree columns: (Array with: (TreeColumnModel new displayBlock: [:node | node content first asString ]; headerLabel: 'Name'; yourself) with: (TreeColumnModel new displayBlock: [:node | node content second asString ]; headerLabel: 'Last Name'; yourself) with: (TreeColumnModel new displayBlock: [:node | node content third asString ]; headerLabel: 'Age'; yourself) with: (TreeColumnModel new displayBlock: [:node | node content fourth asString ]; headerLabel: 'Gender'; yourself)). tree roots: { {'Benjamin'.'Van Ryseghem'.'26'.'M'}. {'Pamela'.'Anderson'.'Far too much'.'F'} } Will produce ![]() Right now, you can get the same by - adding MorphTreeAdapter>>#columns: columns: columns self widgetDo: [ :w | w columns: columns. w resizerChanged. w updateList ] And then evaluating: tree := TreeModel new. tree openWithSpec. tree columns: (Array with: (MorphTreeColumn new rowMorphGetSelector: [:node | node item first asString asMorph ]; headerButtonLabel: 'Name' font: nil; yourself) with: (MorphTreeColumn new rowMorphGetSelector: [:node | node item second asString asMorph ]; headerButtonLabel: 'Last Name' font: nil; yourself) with: (MorphTreeColumn new rowMorphGetSelector: [:node | node item third asString asMorph ]; headerButtonLabel: 'Age' font: nil; yourself) with: (MorphTreeColumn new rowMorphGetSelector: [:node | node item fourth asString asMorph ]; headerButtonLabel: 'Gender' font: nil; yourself)). tree roots: { {'Benjamin'.'Van Ryseghem'.'26'.'M'}. {'Pamela'.'Anderson'.'Far too much'.'F'} } Ben On 07 Nov 2013, at 15:54, Clément Bera <bera.clem...@gmail.com> wrote:
|
- [Pharo-users] Spec - Nested Layouts Bahman Movaqar
- Re: [Pharo-users] Spec - Nested Layouts Clément Bera
- Re: [Pharo-users] Spec - Nested Layouts Bahman Movaqar
- Re: [Pharo-users] Spec - Nested Layouts Bahman Movaqar
- Re: [Pharo-users] Spec - Nested Layouts Benjamin
- Re: [Pharo-users] Spec - Nested Layouts Clément Bera
- Re: [Pharo-users] Spec - Nested La... Benjamin
- Re: [Pharo-users] Spec - Neste... Stéphane Ducasse
- Re: [Pharo-users] Spec - N... Benjamin
- Re: [Pharo-users] Spec - N... Stéphane Ducasse
- Re: [Pharo-users] Spec - N... Benjamin
- Re: [Pharo-users] Spec - N... Stéphane Ducasse
- Re: [Pharo-users] Spec - Neste... btc
- Re: [Pharo-users] Spec - Nested Layouts Bahman Movaqar