Hi,
I'm running the following example:
| browser |
browser := GLMTabulator new.
browser
row: [ :r | r column: #columnA; column: #columnB ].
browser transmit to: #columnA; andShow: [ :a |
a list display: [" :model | "#('Value 1' 'Value 2'
'Value 3' 'Value
1') ]
].
browser transmit from: #columnA; to: #columnB; andShow: [ :a |
a list titleIcon: GLMUIThemeExtraIcons glamorousBrowse
;title:'Data'; display:#('data A' 'data B' 'data C').
a text titleIcon: GLMUIThemeExtraIcons glamorousAccept;
title:'Additional Information 1';display:'something'.
a text titleIcon: GLMUIThemeExtraIcons glamorousAdd;
title:'Additional Information 2';display:'add something'.
].
browser openOn: MooseModel root allModels anyOne.
I want to show data in the tabs "'Additional Information 1" and
"Additional
Information 2" only if 'data A', 'data B', or 'data C' is
selected in the
tab 'Data'.
what is the best way to do it? I could not find a similar example.
Thanks,
Cheers,
Santiago
--
Santiago Vidal