|
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
|