Hello,
I am working to add a new tab in Moose Finder's pane to display code: So
when I select a class, I want to show its methods as a tree and clicking on
each method shows the code of the method.
Here is the code of my attempt:
mooseFinderChildrenTreeIn2: composite
<moosePresentationOrder: 80>
composite tabulator with: [:t |
t row: #methodList; row: #code; title: 'Details'.
t transmit
to: #methodList
andShow: [ :a | a tree display: [:each | each methods]]
].
Problem: my method is not executing the display block and hence the
tabulator tab does not show the list (I can see empty tabulator). I think
its related to embedding a tabulator within a composite presentation and
transmission of values but I do not precisely where to look to correct it.
thanx,
Usman