Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 766 by sean.p.d...(a)gmail.com: Book: Use Action list presentation
example from GLMBasicExamples
http://code.google.com/p/moose-technology/issues/detail?id=766
On
http://www.themoosebook.org/book/internals/glamour/presentations/action-list
You could use the example from GLMBasicExamples:
| browser |
browser := GLMTabulator new.
browser column: #one.
browser transmit to: #one; andShow: [ :a |
a actionList
act: [:entity | entity inspect ] entitled: 'Inspect';
act: [:entity | entity explore ] entitled: 'Explore'].
^ browser openOn: #(1 2 3)