Updates: Owner: tudor.gi...@gmail.com Labels: Milestone-4.4
Comment #2 on issue 510 by tudor.gi...@gmail.com: Introduce Port>>transientValue: http://code.google.com/p/moose-technology/issues/detail?id=510
Fixed. Using transientValue: in the search block solves the issue.
|browser | browser := GLMTabulator new. browser act: [:b | (b pane port: #focusOne) transientValue: 3 ] icon: MooseIcons mooseSearch entitled: 'Search'. browser column: #one; column: #two. browser transmit to: #one; andShow: [ :a | a tree display: [:x | 1 to: x]]. browser transmit to: #two; from: #one; andShow: [ :a | a tree display: [:x | 1 to: x*2]]. browser transmit to: #one port: #selection; fromOutsidePort: #focusOne. browser openOn: 3