Feb. 21, 2014
5:26 p.m.
On Fri, Feb 21, 2014 at 2:14 PM, Benjamin <Benjamin.VanRyseghem.Pharo@gmail.com> wrote:
This works:
m := TreeModel new. m roots: #(1 2 3 4 5). m dragEnabled: true. m dropEnabled: true.
m transferBlock: [ :p :s | TransferMorph withPassenger: s model selectedItems from: s ].
m multiSelection: true.
m openWithSpec.
I guess the same applies for the other model, aka, redefining the TransferMorph. I am currently working on a TransferModel to hide the morphic part of it, but it will not be in Pharo 3.0.
Great, it worked. Thanks