Hi, I'm trying to open a Roassal visualization in glamour. I have the following script:
| browser action| browser := GLMTabulator new.
browser row: [ :r | r column: #columnA; column: #columnB ]; row: #seconRow. browser transmit to: #columnA; andShow: [ :a | a list display: [#('Value 1' 'Value 2' 'Value 3') ]; dynamicActionsOnSelection: [:list | self actionsFor: list ] ]. browser transmit from: #columnA; to: #columnB; andShow: [ :a | a list titleIcon: GLMUIThemeExtraIcons glamorousBrowse ;title:'Data'; display:#('data A' 'data B' 'data C'). ].
browser openOn: MooseModel root allModels anyOne.
actionsFor: aPresentation |actions| actions:=OrderedCollection new. actions add: ((GLMGenericAction new) action: [:each |AMerlinWizard openWizard(each selection)]; title: 'Open visualization'; yourself). ^actions.
Specifically, when I click in the option "Open visualization" of the popup menu (see dynamicActionsOnSelection) a Merlin Wizard is opened (there are some options that the user has to select) to create a Roassal (or Mondrian) visualization. Currently, I'm creating the visualization in a new view. However, I would like to open it in the #seconRow pane. Someone please could tell me how I can accomplish this? Thanks Cheers Santiago