Re: [Pharo-users] Set programatically the selection for a fastTreeTable

2018-10-04 Thread Andrei Chis
On Thu, Oct 4, 2018 at 3:46 AM Arturo Zambrano wrote: > Thanks Andrei! > > I tried: > > browser transmit > to: #Example port: #selection; > transformed: [ Abort ]. > > using also #strongSelection and #rawSelection,but I missed # > fromOutsideEntityPort :) > > > So, I have two additional quest

Re: [Pharo-users] Set programatically the selection for a fastTreeTable

2018-10-03 Thread Arturo Zambrano
Thanks Andrei! I tried: browser transmit to: #Example port: #selection; transformed: [ Abort ]. using also #strongSelection and #rawSelection,but I missed # fromOutsideEntityPort :) So, I have two additional questions: When #selection: and #strongSelection: can be used ? Also, what is the

Re: [Pharo-users] Set programatically the selection for a fastTreeTable

2018-10-03 Thread Andrei Chis
Hi Arturo, Normally what you want should be achieved with a transmission: browser transmit fromOutsideEntityPort; to: #Example port: #selection; transformed: #first. Just I see that doesn't work as expected with #fastTreeTable. The closest thing that looks similar to what you want is: | brows

[Pharo-users] Set programatically the selection for a fastTreeTable

2018-10-03 Thread Arturo Zambrano
Hi all, I'm trying to do what subject says. I tried something like that (in the example I'm trying to get Abort class selected) : | browser | browser := GLMTabulator new. browser row: #Example. browser transmit to: #Example; andShow: [ :a | a fastTreeTable column: 'Class Name' evaluated:[:claz