I have a list presentation that modifies the selection before transmitting: a list … send: [ :version | [ db backupVersion: version ] on: Error do: [ :e | e ] ]
This makes sense for consumption by other presentations, but I just discovered the need internally-to-the-list to access the raw selection (before the sendBlock is applied). Is that possible?
----- Cheers, Sean -- Sent from: http://forum.world.st/Moose-f1310756.html
#rawSelection is s port that you can access from the presentation.
Doru
On Nov 8, 2017, at 5:08 AM, Sean P. DeNigris sean@clipperadams.com wrote:
I have a list presentation that modifies the selection before transmitting: a list … send: [ :version | [ db backupVersion: version ] on: Error do: [ :e | e ] ]
This makes sense for consumption by other presentations, but I just discovered the need internally-to-the-list to access the raw selection (before the sendBlock is applied). Is that possible?
Cheers, Sean -- Sent from: http://forum.world.st/Moose-f1310756.html _______________________________________________ Moose-dev mailing list Moose-dev@list.inf.unibe.ch https://www.list.inf.unibe.ch/listinfo/moose-dev
-- www.tudorgirba.com www.feenk.com
"Some battles are better lost than fought."
Tudor Girba-2 wrote
#rawSelection is s port that you can access from the presentation.
Perfect! I don't know how I missed that.
----- Cheers, Sean -- Sent from: http://forum.world.st/Moose-f1310756.html