About

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

About

stepharo
Hi


When I execute

FTTableMorph exampleListWithExplicitFilterAndActionButton2

I get a list and I can filter the items

Now when I click one of them, the list does not show the selection.

exampleListWithExplicitFilterAndActionButton2
     <example>
     | list |
     list := FTTableMorph new
         extent: 300 @ 300;
         dataSource: (FTExampleDataSource elements: (Smalltalk
allClassesAndTraits sorted: [ :a :b | a name < b name ]));
         enableFilterWithAction: [ :dataSource :searchPattern
:selectedRow | selectedRow browse ];
         yourself.
     list openInWindow


What is the way to see the selection?


Stef