Hi,
Do you have somewhere an entire example that shows the problem?
I tried the examples below and it worked as expected. There could be other issues related to composite presentations.
Are you using tabulators in your custom composite presentations?
browser := GLMTabulator withStatusbar.
browser
row: #selector;
row: #graph.
browser transmit to: #selector; andShow: [ :a |
a list
act: [ :presentation | (presentation pane port: #filtered) value: 10 ]
entitled: 'populate' ].
browser transmit
from: #selector port: #filtered;
to: #graph;
andShow: [ :a |
a text display: [ :x | x ] ].
browser openOn: (1to:9)
browser := GLMTabulator withStatusbar.
innerBrowser := GLMTabulator new.
innerBrowser row: #r1.
innerBrowser transmit to: #r1; andShow: [ :a |
a list
act: [ :presentation | (presentation pane port: #filtered) value: 10 ]
entitled: 'populate' ].
innerBrowser transmit from:#r1 port:#filtered; toOutsidePort: #filtered.
browser
row: #selector;
row: #graph.
browser transmit to: #selector; andShow: [ :a |
a custom: innerBrowser ].
browser transmit
from: #selector port: #filtered;
to: #graph;
andShow: [ :a |
a text display: [ :x | x ] ].
browser openOn: (1to:9)